-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (58 loc) · 1.67 KB
/
pyproject.toml
File metadata and controls
66 lines (58 loc) · 1.67 KB
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
66
[project]
name = "x4i"
version = '1.0.5dev'
requires-python = ">=3.0"
dependencies = [
"numpy > 1.2",
"pint > 0.20",
"pandas > 2",
"pint-pandas",
"pyparsing >= 3.1.2",
"bidict",
"tabulate >= 0.9",
"packaging" # this is a forgotten dependency of pint-pandas
]
authors = [
{name = "David A. Brown", email = "dbrown@bnl.gov"}
]
maintainers = [
{name = "David A. Brown", email = "dbrown@bnl.gov"}
]
description = 'A "simple" python interface to the EXFOR library'
readme = "README.md"
license = {file = "LICENSE.txt"}
keywords = ["EXFOR", "nuclear reaction data"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python"
]
[project.optional-dependencies]
test = [
"pytest > 8.2",
]
[project.scripts]
setup-exfor-db-index = "x4i.cli.setup_exfor_db_index:main"
get-exfor-entry = "x4i.cli.get_exfor_entry:main"
install-exfor-db = "x4i.cli.install_exfor_db:main"
check_exfor = "x4i.cli.check_exfor:main"
[project.urls]
Homepage = "https://github.com/brown170/x4i"
Documentation = "https://github.com/brown170/x4i/blob/main/doc/x4i/user-guide/x4i.pdf"
Repository = "https://github.com/brown170/x4i.git"
"Bug Tracker" = "https://github.com/brown170/x4i/issues"
Changelog = "https://github.com/brown170/x4i/blob/main/CHANGES.txt"
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ['src']
[tool.setuptools.package-data]
x4i = [
"dicts/*.txt",
"dicts/*.json",
"dicts/*.csv",
"data/x4doi.txt" # not sure if this should be included here or automatically build during the library setup.
]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-v -ra -q"