-
Notifications
You must be signed in to change notification settings - Fork 61
/
Copy pathsetup.py
39 lines (38 loc) · 1.15 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
from setuptools import setup, find_packages
setup(
name="xgboostlss",
version="0.4.0",
description="XGBoostLSS - An extension of XGBoost 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/XGBoostLSS",
license="Apache License 2.0",
packages=find_packages(exclude=["docs", "tests*"]),
include_package_data=True,
package_data={'': ['datasets/*.csv']},
zip_safe=True,
python_requires=">=3.9",
install_requires=[
"xgboost~=1.7.6",
"torch~=2.0.1",
"pyro-ppl~=1.8.5",
"optuna~=3.2.0",
"properscoring~=0.1",
"scikit-learn~=1.2.2",
"numpy~=1.24.3",
"pandas~=2.0.3",
"plotnine~=0.12.1",
"scipy~=1.11.1",
"seaborn~=0.12.2",
"tqdm~=4.65.0",
"matplotlib~=3.7.2",
"ipython~=8.14.0",
],
extras_require={
"docs": ["mkdocs", "mkdocstrings[python]", "mkdocs-jupyter"]
},
test_suite="tests",
tests_require=["flake8", "pytest"],
)