-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
25 lines (24 loc) · 889 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
#Taken from https://wiki.python.org/moin/Distutils/Tutorial
from setuptools import setup
import ananke
setup(name='ananke',
version=ananke.__version__,
description='Ananke: Clustering of time-series marker gene data',
url='https://github.com/beiko-lab/ananke',
author='Michael Hall',
author_email='[email protected]',
classifiers=['Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Topic :: Scientific/Engineering :: Bio-Informatics'],
license='GPL3',
packages=['ananke'],
install_requires=['h5py>=2.3.1','numpy>=1.6','scipy>=0.16.1',
'scikit-learn>=0.16','pandas>=0.17'],
entry_points = {
'console_scripts': ['ananke=ananke.ananke:main'],
},
zip_safe=False)