-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (37 loc) · 1.07 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
[project]
name = "acellera-atm"
description = "A molecule reading/writing and manipulation package."
authors = [{ name = "Acellera", email = "[email protected]" }]
readme = "README.md"
requires-python = ">=3.8"
dynamic = ["version"]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: POSIX :: Linux",
]
dependencies = []
[project.urls]
"Homepage" = "https://github.com/Acellera/atm"
"Bug Tracker" = "https://github.com/Acellera/atm/issues"
[project.scripts]
rbfe_structprep = "atm.rbfe_structprep:rbfe_structprep"
rbfe_production = "atm.rbfe_production:rbfe_production"
[tool.setuptools.packages.find]
where = [""]
include = ["atm*"]
namespaces = false
[tool.versioneer]
VCS = "git"
style = "pep440"
versionfile_source = "atm/_version.py"
versionfile_build = "atm/_version.py"
tag_prefix = ""
parentdir_prefix = "atm-"
[tool.pytest.ini_options]
python_files = "*.py"
python_classes = "_Test"
python_functions = "_test*"
testpaths = ["tests"]
[build-system]
requires = ["setuptools", "toml", "versioneer[toml]==0.28"]
build-backend = "setuptools.build_meta"