-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
48 lines (43 loc) · 947 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[build-system]
requires = ["setuptools>=61.0", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "bpcmp"
requires-python = ">=3.10"
version = "1.0.0"
authors = [
{name = "Jai Sachdev", email = "[email protected]"},
]
description = "Comparison tool for ADIOS2 bp output"
readme = "README.md"
keywords = ["ADIOS2", "comparison", "regression testing"]
license = {text = "GNU General Public License 3"}
classifiers = [
"Programming Language :: Python :: 3",
]
dependencies = [
"setuptools-scm",
"numpy",
"adios2",
"termcolor"
]
[project.optional-dependencies]
dev = [
"autopep8",
"flake8"
]
docs = [
"sphinx",
"sphinx_rtd_theme",
"readthedocs-sphinx-search",
"sphinx-autobuild"
]
[project.scripts]
bpcmp = "bpcmp.bpcmp:main"
bpdump = "bpcmp.bpdump:main"
[tool.setuptools_scm]
[tool.autopep8]
max_line_length = 160
recursive = true
in-place = true
aggressive = 3