-
Notifications
You must be signed in to change notification settings - Fork 17
/
setup.py
85 lines (76 loc) · 2.41 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
# Copyright (c) Tingzheng Hou.
# Distributed under the terms of the MIT License.
"""Setup.py for MDGO."""
from __future__ import annotations
import os
from setuptools import find_packages, setup
module_dir = os.path.dirname(os.path.abspath(__file__))
with open(os.path.join(module_dir, "README.md")) as f:
readme = f.read()
INSTALL_REQUIRES = [
"numpy>=1.16.0",
"pandas",
"matplotlib",
"scipy",
"tqdm",
"pymatgen>=2022.7.8",
"statsmodels",
"pubchempy",
"MDAnalysis>=2.2.0",
"selenium",
]
on_rtd = os.environ.get("READTHEDOCS") == "True"
if on_rtd:
INSTALL_REQUIRES = []
if __name__ == "__main__":
setup(
name="mdgo",
version="0.3.1",
description="A codebase for MD simulation setup and results analysis.",
long_description=readme,
long_description_content_type="text/markdown",
license="MIT",
author="mdgo development team",
author_email="[email protected]",
maintainer="Tingzheng Hou",
maintainer_email="[email protected]",
url="https://github.com/HT-MD/mdgo",
keywords=[
"LAMMPS",
"Gromacs",
"Molecular dynamics",
"liquid",
"charge",
"materials",
"science",
"solvation",
"diffusion",
"transport",
"conductivity",
"force field",
],
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Software Development :: Libraries :: Python Modules",
],
packages=find_packages(),
install_requires=INSTALL_REQUIRES,
extras_require={
"web": [
"sphinx",
"sphinx_rtd_theme",
"sphinx-autodoc-typehints",
],
},
python_requires=">=3.8",
)