-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
35 lines (33 loc) · 1.19 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
from setuptools import setup
with open('README.md') as f:
readme = f.read()
setup(
name='random_survival_forest',
packages=['random_survival_forest'],
version='0.8.2',
license="MIT License",
long_description=readme,
long_description_content_type="text/markdown",
description='A Random Survival Forest implementation inspired by Ishwaran et al.',
author='Julian Späth',
author_email='[email protected]',
url='https://github.com/julianspaeth/random-survival-forest',
download_url='https://github.com/julianspaeth/random-survival-forest/archive/v0.1-beta.tar.gz',
keywords=['survival-analysis', 'survival-prediction', 'machine-learning', 'random-forest',
'random-survival-forest'],
install_requires=[
'numpy',
'pandas',
'joblib',
'multiprocess',
'lifelines',
'scikit-learn',
],
classifiers=[
'Development Status :: 4 - Beta',
'Topic :: Software Development :: Build Tools', 'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
)