-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
57 lines (54 loc) · 1.65 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
45
46
47
48
49
50
51
52
53
54
55
56
57
"""Setup for FIFE: Finite-Interval Forecasting Engine."""
from setuptools import setup
with open("README.md", "r") as f:
README = f.read()
setup(
name="fife",
version="1.6.2",
description=(
"Finite-Interval Forecasting Engine: Machine learning models "
"for discrete-time survival analysis and multivariate time series "
"forecasting"
),
long_description=README,
long_description_content_type="text/markdown",
url="https://github.com/IDA-HumanCapital/fife",
project_urls={
"Bug Tracker": "https://github.com/IDA-HumanCapital/fife/issues",
"Source Code": "https://github.com/IDA-HumanCapital/fife",
"Documentation": "https://fife.readthedocs.io/en/latest",
},
author="Institute for Defense Analyses",
author_email="humancapital@ida.org",
license="AGPLv3+",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: "
"GNU Affero General Public License v3 or later (AGPLv3+)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Topic :: Scientific/Engineering :: Information Analysis",
],
packages=["fife"],
install_requires=[
"dask[delayed]",
"ipython",
"keras",
"lifelines",
"lightgbm",
"matplotlib",
"numpy",
"optuna",
"pandas",
"seaborn",
"scikit-learn",
"shap",
],
extras_require={"tensorflow": ["tensorflow"]},
entry_points={
"console_scripts": [
"fife=fife.__main__:main",
]
},
)