-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
36 lines (33 loc) · 860 Bytes
/
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
__author__ = 'gph82'
#Minimal setup script
from setuptools import setup
import versioneer
meta_data = dict(name='molPX',
author='Guillermo Perez-Hernandez',
author_email='guille.perez@fu-berlin.de',
maintainer='Martin K. Scherer',
maintainer_email='m.scherer@fu-berlin.de',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
packages=[
'molpx',
'molpx.tests'
],
install_requires=[
'ipympl',
'ipywidgets>=7',
'matplotlib',
'mdtraj',
'nglview>=1',
'notebook',
'pyemma',
'scikit-learn',
],
package_data={
'molpx': ['notebooks/*',
'notebooks/data/*'],
},
include_package_data=True,
)
if __name__ == '__main__':
setup(**meta_data)