forked from PathologyDataScience/SurvivalNet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (39 loc) · 1.31 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
44
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup
import os
from pkg_resources import parse_requirements
with open('README.md') as readme_file:
readme = readme_file.read()
with open('LICENSE') as f:
license_str = f.read()
try:
with open('requirements.txt') as f:
ireqs = parse_requirements(f.read())
except SyntaxError:
raise
requirements = [str(req) for req in ireqs]
setup(name='survivalnet',
version='0.1.0',
description='Deep learning survival models',
author='Emory University',
author_email='lee.cooper@emory.edu',
url='https://github.com/cooperlab/SurvivalNet',
packages=find_packages(),
package_dir={'survivalnet': 'survivalnet'},
include_package_data=True,
install_requires=requirements,
license=license_str,
zip_safe=False,
keywords='survivalnet',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Environment :: Console',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)