forked from drorlab/pensa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (40 loc) · 1.17 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
from setuptools import setup, find_packages
setup(name='pensa',
version='0.2.8',
description='PENSA - protein ensemble analysis',
url='http://github.com/drorlab/pensa',
author='Martin Voegele, Neil Thomson, Sang Truong, Jasper McAvity',
author_email='[email protected]',
license='MIT',
packages=find_packages(include=[
'pensa',
'pensa.preprocessing',
'pensa.features',
'pensa.comparison',
'pensa.dimensionality',
'pensa.clusters',
'pensa.statesinfo',
]),
zip_safe=False,
install_requires=[
'numpy',
'scipy>=1.2',
'mdtraj==1.9.3',
'mdshare',
'pyemma',
'MDAnalysis',
'matplotlib',
'biotite',
'gpcrmining',
],
classifiers=[
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 4 - Beta',
# license (should match "license" above)
'License :: OSI Approved :: MIT License',
# Supported Python versions
'Programming Language :: Python :: 3',
],)