Diff of /setup.py [000000] .. [53737a]

Switch to side-by-side view

--- a
+++ b/setup.py
@@ -0,0 +1,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='opoirion@hawaii.edu',
+      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'
+      ],
+      )