forked from MDAnalysis/RotamerConvolveMD
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·38 lines (36 loc) · 1.53 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
#! /usr/bin/python
# coding=utf-8
from setuptools import setup, find_packages
if __name__ == '__main__':
RELEASE = "1.2.1.dev"
with open("README.rst") as summary:
LONG_DESCRIPTION = summary.read()
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',
]
setup(name='RotamerConvolveMD',
version=RELEASE,
description='Analysis of spin label distances over structural ensembles',
author='Philip W. Fowler',
author_email='[email protected]',
url='https://github.com/MDAnalysis/RotamerConvolveMD',
requires=['numpy (>=1.6)', 'MDAnalysis (>=0.11.0)'],
install_requires=['numpy>=1.6.0', 'MDAnalysis>=0.11.0'],
provides=['rotcon'],
license='GPL 2',
packages=find_packages(exclude=['scripts', 'rotcon/data']),
package_data={'rotcon': ['data/*.pdb', 'data/*.dcd', 'data/*.dat']},
scripts=['scripts/convolve-mtss-rotamers.py'],
classifiers=CLASSIFIERS,
long_description=LONG_DESCRIPTION,
zip_safe=True,
)