-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
69 lines (66 loc) · 1.83 KB
/
setup.py
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
from pathlib import Path
from setuptools import find_packages, setup
BASE_DIR = Path(__file__).resolve().parent
exec((BASE_DIR / "pacs/_version.py").read_text())
setup(
name="pacs",
version=__version__, # type: ignore[name-defined] # NOQA: F821
packages=find_packages(),
description=(
"PaCS-Toolkit:",
"Tool kit for Parallel Cascade Selection Molecular Dynamic Simulation",
),
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="Kitaolab",
url="https://github.com/Kitaolab/PaCS-Toolkit",
project_urls={
"Source": "https://github.com/Kitaolab/PaCS-Toolkit",
"Documentation": "",
"Paper": "",
},
license="MIT License",
classifiers=[
"License :: OSI Approved :: MIT License",
"Operating System :: Unix",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
],
install_requires=[
"numpy<2.0.0",
"tomli>=2.0.1",
],
extras_require={
"mdtraj": [
"mdtraj==1.9.9",
"scipy>=1.7.3",
"scikit-learn>=1.0.2",
],
"msm": [
"mdtraj==1.9.9",
"matplotlib>=3.5.3",
"scipy>=1.7.3",
"pandas>=1.1.5",
# "pyemma>=2.5.12",
"deeptime==0.4.4",
"ipykernel>=6.16.2",
"scikit-learn>=1.0.2",
],
"all": [
"mdtraj==1.9.9",
"scipy>=1.7.3",
"scikit-learn>=1.0.2",
"matplotlib>=3.5.3",
"pandas>=1.1.5",
# "pyemma>=2.5.12",
"deeptime==0.4.4",
"ipykernel>=6.16.2",
],
},
package_data={},
entry_points={
"console_scripts": [
"pacs=pacs.__main__:main",
]
},
)