a b/setup.py
1
from setuptools import setup, find_packages
2
3
VERSION = '2.7.5'
4
5
setup(name='garmire_simdeep',
6
      version=VERSION,
7
      description="Deep-Learning framework for multi-omic and survival data integration",
8
      long_description="""""",
9
      classifiers=[],
10
      keywords='Deep-Learning multi-omics survival data integration',
11
      author='o_poirion',
12
      author_email='opoirion@hawaii.edu',
13
      url='',
14
      license='MIT',
15
      packages=find_packages(exclude=['examples', 'tests']),
16
      include_package_data=True,
17
      zip_safe=False,
18
      install_requires=[
19
          'numpy',
20
          'scipy',
21
          'scikit-learn>=0.19.1',
22
          'theano',
23
          'tensorflow',
24
          'keras',
25
          'simplejson',
26
          'lifelines',
27
          'dill',
28
          'colour',
29
          'seaborn',
30
          'mpld3',
31
          'tabulate'
32
      ],
33
      )