-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
66 lines (64 loc) · 2.68 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
# setuptools installation of POW
# Copyright (c) 2010 Oliver Beckstein <[email protected]>
# Released under the GNU Public License 3 (or higher, your choice)
import sys
from setuptools import setup, find_packages
import versioneer
setup(name="MDPOW",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description="A library for computing solvation/water partitioning coefficients using molecular dynamics simulations",
long_description=open("README.rst").read(),
long_description_content_type="text/x-rst",
author="Oliver Beckstein",
author_email="[email protected]",
license="GPLv3",
url="https://github.com/Becksteinlab/MDPOW",
keywords="science Gromacs analysis 'molecular dynamics'",
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: POSIX",
'Operating System :: MacOS :: MacOS X',
'Programming Language :: Python',
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Scientific/Engineering :: Physics",
],
packages=find_packages(exclude=['examples']),
scripts=['scripts/mdpow-pow',
'scripts/mdpow-pcw',
'scripts/mdpow-check',
'scripts/mdpow-rebuild-fep',
'scripts/mdpow-rebuild-simulation',
'scripts/mdpow-equilibrium',
'scripts/mdpow-fep',
'scripts/mdpow-cfg2yaml.py',
'scripts/mdpow-solvationenergy',
'scripts/mdpow-get-runinput'
],
package_data={'mdpow': ['top/*.dat', 'top/*.gro', 'top/*.itp',
'top/oplsaa.ff/*',
'top/charmm36-mar2019.ff/*',
'top/amber99sb.ff/*',
'templates/*'], },
install_requires=['numpy>=1.6', 'scipy',
'pyyaml',
'GromacsWrapper>=0.5.1',
'numkit',
'six',
'mdanalysis>=2',
'alchemlyb<2',
'pandas',
'pymbar',
],
#setup_requires=['pytest-runner',],
tests_require=['pytest', 'pybol', 'py'],
zip_safe=True,
)