forked from Becksteinlab/GromacsWrapper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
69 lines (65 loc) · 2.84 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
# setuptools installation of GromacsWrapper
# Copyright (c) 2008-2011 Oliver Beckstein <[email protected]>
# Released under the GNU Public License 3 (or higher, your choice)
#
# See the files INSTALL and README for details or visit
# https://github.com/Becksteinlab/GromacsWrapper
from __future__ import with_statement
from setuptools import setup, find_packages
import versioneer
with open("README.rst") as readme:
long_description = readme.read()
setup(name="GromacsWrapper",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description="A Python wrapper around the Gromacs tools.",
long_description=long_description,
long_description_content_type="text/x-rst",
author="Oliver Beckstein",
author_email="[email protected]",
license="GPLv3",
url="https://github.com/Becksteinlab/GromacsWrapper",
download_url="https://github.com/Becksteinlab/GromacsWrapper/downloads",
keywords="science Gromacs analysis 'molecular dynamics'",
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License (GPL)',
'License :: OSI Approved :: BSD License',
'Operating System :: POSIX',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows ',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Chemistry',
'Topic :: Software Development :: Libraries :: Python Modules',
],
packages=find_packages(
exclude=['scripts', 'tests', 'tests.*', 'extras', 'doc/examples']),
scripts=[
'scripts/gw-join_parts.py',
'scripts/gw-merge_topologies.py',
'scripts/gw-forcefield.py',
'scripts/gw-partial_tempering.py',
],
package_data={'gromacs': ['templates/*.sge', 'templates/*.pbs', # template files
'templates/*.ll', 'templates/*.sh',
'templates/*.mdp', 'templates/*.cfg'
],
},
install_requires=['numpy>=1.0',
'six', # towards py 3 compatibility
'numkit', # numerical helpers
'matplotlib',
],
tests_require=['pytest', 'numpy>=1.0', 'pandas>=0.17'],
zip_safe=True,
)