forked from StatMixedML/XGBoostLSS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (39 loc) · 1.28 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
from setuptools import setup, find_packages
setup(
name="xgboostlss",
version="0.4.0",
description="XGBoostLSS - An extension of XGBoost to probabilistic modelling",
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.10",
install_requires=[
"xgboost>=2.0.0,<3.0.0",
"torch>=2.0.0,<3.0.0",
"pyro-ppl>=1.8.0,<2.0.0",
"optuna>=3.0.0,<4.0.0",
"properscoring>=0.1,<0.2",
"scikit-learn>=1.0.0,<2.0.0",
"numpy>=1.20.0,<2.0.0",
"pandas>=1.0.0,<3.0.0",
"plotnine>=0.10.0,<0.13.0",
"scipy>=1.7.0,<2.0.0",
"shap>=0.40.0,<0.45.0",
"seaborn>=0.11.0,<0.14.0",
"tqdm>=4.60.0,<5.0.0",
"matplotlib>=3.3.0,<4.0.0",
"ipython>=7.0.0,<9.0.0",
],
extras_require={
"docs": ["mkdocs", "mkdocstrings[python]", "mkdocs-jupyter"]
},
test_suite="tests",
tests_require=["flake8", "pytest"],
)