-
Notifications
You must be signed in to change notification settings - Fork 36
/
setup.py
43 lines (33 loc) · 1.21 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
from setuptools import setup, find_packages
MAJOR = 4
MINOR = 10
PATCH = 4
VERSION = "{}.{}.{}".format(MAJOR, MINOR, PATCH)
with open("ttclust/version.py", "w") as f:
f.write("__version__ = '{}'\n".format(VERSION))
setup(
name='ttclust',
version=VERSION,
url='https://github.com/tubiana/TTClust',
license='GPL3',
author='Thibault Tubiana',
author_email='[email protected]',
description='TTclust : A molecular simulation clustering program',
platforms=["Linux", "Solaris", "Mac OS-X", "darwin", "Unix", "win32"],
setup_requires = ['cython'],
install_requires=['argparse',
'argcomplete',
'cython',
'progressbar2',
'matplotlib',
'numpy',
'prettytable',
'pandas',
'scipy >= 0.18',
'scikit-learn',
'numba',
'mdtraj >= 1.7'],
entry_points={'console_scripts':['ttclust=ttclust.ttclust:main']},
#'gui_scripts':['ttclustGUI=ttclust.ttclustGUI:main'],
packages=find_packages(),
)