forked from jaredleekatzman/DeepSurv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (29 loc) · 1003 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
from setuptools import setup
with open('README.txt') as file:
long_description = file.read()
setup(name='deepsurv',
version='0.2.1',
description='Deep Cox Proportional Hazards Network for deep learning and survival analysis.',
keywords = "survival analysis deep learning cox regression",
url='https://github.com/jaredleekatzman/DeepSurv',
author='Jared Katzman',
author_email='[email protected]',
license='MIT',
long_description = long_description,
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Programming Language :: Python",
"Topic :: Scientific/Engineering",
],
packages=['deepsurv'],
install_requires=[
'theano>=0.8.2',
'lasagne==0.2.dev1',
'lifelines>=0.9.2',
'tensorboard_logger>=0.0.3'
],
# test_suite = 'nose.collector',
# test_require = ['nose','lasagne','theano']
)