-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
75 lines (69 loc) · 2.31 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[build-system]
requires = ["setuptools>=62.0", "wheel>=0.37.1"]
build-backend = "setuptools.build_meta"
[project]
name = "AtomPacker"
description = "A python package for packing nanoclusters into supramolecular cages"
authors = [
{ name = "João V. S. Guerra", email = "jvsguerra@gmail.com" },
{ name = "Gabriel E. Jara" },
{ name = "Paulo S. Lopes-de-Oliveira" },
{ name = "György Szalóki" },
]
maintainers = [{ name = "João V. S. Guerra", email = "jvsguerra@gmail.com" }]
license = { file = "LICENSE" }
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.10"
keywords = ["computational chemistry", "atom packing", "sphere packing"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
'Programming Language :: Python',
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3 :: Only",
'Operating System :: Microsoft :: Windows',
'Operating System :: Unix',
'Operating System :: MacOS',
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Scientific/Engineering :: Physics",
]
dependencies = [
"ase==3.23.0",
"biopython==1.84.0",
"MDAnalysis==2.7.0",
"numpy",
"pandas~=2.2.3",
"plotly",
"pyKVFinder>=0.7,<0.8",
]
dynamic = ["version"]
[project.optional-dependencies]
dev = ["black==24.10.0", "flake8==7.1.1", "pytest==8.3.3"]
docs = ["sphinx==8.1.3", "sphinx-rtd-theme==3.0.2"]
[project.urls]
homepage = "https://github.com/cnpem/AtomPacker"
documentation = "https://cnpem.github.io/AtomPacker/"
issues = "https://github.com/cnpem/AtomPacker/issues"
[tool.setuptools]
packages = [
"AtomPacker",
"AtomPacker.core",
"AtomPacker.core.io",
"AtomPacker.core.io.mmcif",
"AtomPacker.core.io.mol2",
"AtomPacker.core.io.pdb",
"AtomPacker.core.io.vdw",
"AtomPacker.core.io.xyz",
"AtomPacker.core.grid",
"AtomPacker.structure",
]
[tool.setuptools.dynamic]
version = { attr = "AtomPacker.__version__" }
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = ["--import-mode=importlib"]