-
Notifications
You must be signed in to change notification settings - Fork 37
/
pyproject.toml
45 lines (40 loc) · 1.11 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
[project]
name = "moleculekit"
description = "A molecule reading/writing and manipulation package."
authors = [{ name = "Stefan Doerr", email = "[email protected]" }]
readme = "README.md"
requires-python = ">=3.8"
dynamic = ["version"]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: POSIX :: Linux",
]
dependencies = ["numpy>=1.18.5", "pandas>=1.1.2", "networkx", "tqdm", "msgpack"]
[project.urls]
"Homepage" = "https://github.com/Acellera/moleculekit"
"Bug Tracker" = "https://github.com/Acellera/moleculekit/issues"
[tool.setuptools.packages.find]
where = [""]
include = ["moleculekit*"]
namespaces = false
[build-system]
requires = [
"setuptools",
"numpy>=1.18.5",
"Cython>=0.29.21",
"toml",
"versioneer[toml]==0.28",
]
build-backend = "setuptools.build_meta"
[tool.versioneer]
VCS = "git"
style = "pep440"
versionfile_source = "moleculekit/_version.py"
versionfile_build = "moleculekit/_version.py"
tag_prefix = ""
parentdir_prefix = "moleculekit-"
[tool.pytest.ini_options]
python_files = "*.py"
python_classes = "_Test"
python_functions = "_test*"
norecursedirs = "test-data"