-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathpyproject.toml
52 lines (47 loc) · 1.13 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
[project]
name = "moleculekit"
description = "A molecule reading/writing and manipulation package."
authors = [{ name = "Stefan Doerr", email = "[email protected]" }]
readme = "README.md"
requires-python = ">=3.9"
dynamic = ["version"]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: POSIX :: Linux",
]
dependencies = [
"numpy>=1.23.5",
"pandas>=1.1.2",
"networkx",
"tqdm",
"msgpack",
"requests",
]
[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>=2.0.0rc1",
"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"