1 Star 0 Fork 0

al0014 / DeepSurv

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
setup.py 1003 Bytes
一键复制 编辑 原始数据 按行查看 历史
Jared Katzman 提交于 2017-12-07 11:13 . Update installation requirements
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='jaredleekatzman@gmail.com',
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']
)
1
https://gitee.com/al0014/DeepSurv.git
git@gitee.com:al0014/DeepSurv.git
al0014
DeepSurv
DeepSurv
master

搜索帮助