-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
51 lines (37 loc) · 1.09 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "exforparser"
authors = [
{name = "Shin Okumura/IAEA-NDS", email = "[email protected]"},
]
version = "1.0.0b"
description = "EXFOR Parser"
readme = "README.md"
requires-python = ">=3.8"
keywords = ["EXFOR", "Nuclear Data"]
license = {file = "LICENSE"}
classifiers = [
"Development Status :: 4 - Beta",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
]
dynamic = ["dependencies"]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
"exforparser.tabulated" = ["*.dat", "*.json"]
"exforparser.pickles" = ["*.pickle"]
"submodules.utilities" = ["*.txt"]
[project.urls]
Homepage = "https://github.com/shinokumura/exforparser"
[project.scripts]
exparser = "exforparser.exparser:main"
tabulated = "exforparser.tabulated:main"
test = "exforparser.pa:main"