-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
55 lines (49 loc) · 2 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
# 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
# http://sbcb.bioch.ox.ac.uk/oliver/software/GromacsWrapper/
from __future__ import with_statement
from setuptools import setup, find_packages
with open("README.md") as readme:
long_description = readme.read()
min_numpy_ver = '1.9.0'
setuptools_kwargs = {
'install_requires': [
'python-dateutil >= 2.5.0',
'pytz >= 2011k',
'numpy >= {numpy_ver}'.format(numpy_ver=min_numpy_ver),
'pandas >= 0.22.0',
],
'setup_requires': ['numpy >= {numpy_ver}'.format(numpy_ver=min_numpy_ver)],
'zip_safe': False,
}
setup(name="PlumedWrapper",
version="0.1",
description="A python wrapper around the gromacs tools.",
long_description=long_description,
author="Jan Domanski",
license="GPLv3",
url="://github.com/jandom/PlumedWrapper",
download_url="https://github.com/jandom/PlumedWrapper/downloads",
keywords="science Gromacs Plumed 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=['plumed'],
package_dir={'plumed': 'plumed/'},
package_data={
'plumed.tests.io': ['data/COLVAR']
},
**setuptools_kwargs
)