-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
38 lines (34 loc) · 1.03 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
[build-system]
requires = ["setuptools>=64", "versioneer[toml]", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "MDANCE"
dynamic = ["version"]
authors = [
{ name="Lexin Chen", email="[email protected]" },
]
description = "a flexible n-ary clustering package for all applications."
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
'numpy >= 1.20.0',
'scikit-learn >= 0.24.0',
'MDAnalysis >= 2.0.0',
'shapeGMMTorch >= 1.0.0',
'torch >= 2.2.2',
]
[project.urls]
Homepage = "https://github.com/mqcomplab/MDANCE"
Documentation = "https://mdance.readthedocs.io/en/latest/"
Repository = "https://github.com/mqcomplab/MDANCE"
Issues = "https://github.com/mqcomplab/MDANCE/issues"
[project.scripts]
prime_sim = "mdance.cli.prime_sim:main"
prime_rep = "mdance.cli.prime_rep:main"
[tool.setuptools.package-data]
"mdance.data" = ["*.csv", "*.npy", "*.pdb", "*.dcd"]