forked from StatMixedML/LightGBMLSS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (34 loc) · 1017 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
32
33
34
35
from setuptools import setup, find_packages
setup(
name="lightgbmlss",
version="0.1.0",
description="LightGBMLSS - An extension of LightGBM to probabilistic forecasting",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="Alexander März",
author_email="[email protected]",
url="https://github.com/StatMixedML/LightGBMLSS",
license="Apache License 2.0",
packages=find_packages(exclude=["tests"]),
include_package_data=True,
package_data={'': ['datasets/*.csv']},
zip_safe=True,
python_requires=">=3.7",
install_requires=[
"lightgbm~=3.3.1",
"optuna~=2.9.1",
"torch~=1.13.0",
"properscoring~=0.1",
"scikit-learn>=0.24.2",
"shap~=0.39.0",
"numpy~=1.16",
"pandas~=1.1",
"plotnine~=0.8.0",
"scipy",
"tqdm",
"matplotlib",
"ipywidgets",
],
test_suite="tests",
tests_require=["flake8", "pytest"],
)