-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
65 lines (56 loc) · 1.44 KB
/
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "ndmanager"
readme = "README.md"
authors = [{ name="Nicolas Linden", email="[email protected]"}]
description = "Managing you nuclear data collection"
classifiers = ["Programming Language :: Python :: 3.11"]
requires-python = ">=3.11"
dependencies = [
'tabulate',
'h5py',
'pyyaml',
'requests',
'beautifulsoup4',
'tqdm',
'matplotlib',
]
dynamic = ["version"]
[tool.setuptools.dynamic]
version = {attr = "ndmanager.__version__"}
[project.optional-dependencies]
test = ["pytest", "pytest-env", "pytest-cov"]
build = ["build", "twine"]
[project.urls]
Homepage = "https://github.com/nplinden/ndmanager"
[project.scripts]
ndf = "ndmanager.CLI.fetcher.main:main"
ndo = "ndmanager.CLI.omcer.main:main"
ndc = "ndmanager.CLI.chainer.main:main"
nds = "ndmanager.CLI.sampler.main:main"
[tool.setuptools]
packages = ['ndmanager',
'ndmanager.API',
'ndmanager.API.iaea',
'ndmanager.API.process',
'ndmanager.API.sampling',
'ndmanager.SHA1',
'ndmanager.CLI.fetcher',
'ndmanager.CLI.omcer',
'ndmanager.CLI.chainer',
'ndmanager.CLI.sampler',
]
[tool.pytest.ini_options]
minversion = "6.0"
testpaths = [
"tests",
]
env = [
"NDMANAGER_ENDF6=pytest-artifacts/endf6",
"NDMANAGER_HDF5=pytest-artifacts/hdf5",
"NDMANAGER_CONFIG=pytest-artifacts"
]
[tool.pylint."messages control"]
disable=["invalid-name"]