-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathsetup.py
33 lines (31 loc) · 872 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
from setuptools import setup, find_packages
VERSION = '2.7.5'
setup(name='garmire_simdeep',
version=VERSION,
description="Deep-Learning framework for multi-omic and survival data integration",
long_description="""""",
classifiers=[],
keywords='Deep-Learning multi-omics survival data integration',
author='o_poirion',
author_email='[email protected]',
url='',
license='MIT',
packages=find_packages(exclude=['examples', 'tests']),
include_package_data=True,
zip_safe=False,
install_requires=[
'numpy',
'scipy',
'scikit-learn>=0.19.1',
'theano',
'tensorflow',
'keras',
'simplejson',
'lifelines',
'dill',
'colour',
'seaborn',
'mpld3',
'tabulate'
],
)