forked from Becksteinlab/GromacsWrapper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
62 lines (56 loc) · 2.72 KB
/
setup.py
File metadata and controls
62 lines (56 loc) · 2.72 KB
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
# setuptools installation of GromacsWrapper
# Copyright (c) 2008-2011 Oliver Beckstein <orbeckst@gmail.com>
# 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,
author="Oliver Beckstein",
author_email="orbeckst@gmail.com",
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)',
'Operating System :: POSIX',
'Operating System :: MacOS :: MacOS X',
'Programming Language :: Python',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Chemistry',
'Topic :: Software Development :: Libraries :: Python Modules',
],
packages=find_packages(exclude=['tests','scripts','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',
'tests/data/fileformats/top/*.mdp', # test data
'tests/data/fileformats/top/*/*.top',
'tests/data/fileformats/top/*/*.gro',
'tests/data/*.log',
],
},
install_requires = ['numpy>=1.0',
'six', # towards py 3 compatibility
'numkit', # numerical helpers
],
tests_require = ['pytest', 'numpy>=1.0', 'pandas>=0.17'],
zip_safe = True,
)