forked from liupei101/libsurv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
44 lines (37 loc) · 1.32 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
#coding=utf-8
from setuptools import setup, find_packages
pkg_name = "libsurv"
exec(compile(open(pkg_name+"/version.py").read(), pkg_name+"/version.py", "exec"))
with open("README.md") as f:
long_description = f.read()
setup(name=pkg_name,
version=__version__,
description='A library of efficient survival analysis models, including DeepCox, HitBoost, CEBoost and EfnBoost methods.',
keywords = "survival analysis, deep learning, cox regression, risk prediction, XGBoost",
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/liupei101/libsurv',
author='Pei Liu',
author_email='[email protected]',
license='MIT',
classifiers=[
"License :: MIT License",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Scientific/Engineering",
],
packages = find_packages(),
python_requires=">=3.5",
install_requires=[
'tensorflow>=1.10.0, <2.0.0',
'pandas>=0.24.2',
'numpy==1.14.5',
'matplotlib>=3.0.3',
'lifelines>=0.14.6',
'xgboost>=0.82',
],
include_package_data=True,
)