-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathpyproject.toml
53 lines (45 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
53
[project]
name = "moleculekit"
description = "A molecule reading/writing and manipulation package."
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]
include = ["moleculekit*"]
namespaces = false
[tool.setuptools.package-data]
"moleculekit.share" = ["*"]
[tool.setuptools_scm]
[build-system]
requires = [
"setuptools",
"numpy>=2.0.0rc1",
"Cython>=0.29.21",
"setuptools-scm>=8",
]
build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
python_files = "*.py"
python_classes = "_Test"
python_functions = "_test*"
norecursedirs = "test-data"
[tool.cibuildwheel]
skip = ["pp*"] # Disable PyPy builds due to Cython
test-requires = "pytest"
test-command = "pytest tests/"