forked from ThomasMeissnerDS/BlueCast
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
55 lines (51 loc) · 1.58 KB
/
pyproject.toml
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
[tool.poetry]
name = "bluecast"
version = "0.93"
description = "A lightweight and fast automl framework"
authors = ["Thomas Meißner <[email protected]>"]
license = "GPL-3.0-only"
classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
homepage = "https://github.com/ThomasMeissnerDS/BlueCast"
repository = "https://github.com/ThomasMeissnerDS/BlueCast"
readme = "README.md"
packages = [
{ include = "bluecast" },
]
[tool.poetry.dependencies]
python = ">=3.9,<3.13"# lower not possible: https://github.com/python-poetry/poetry/issues/5628
category_encoders = "^2.3.0"
dill = "^0.3.3"
matplotlib = ">=3.1.3" # pinned due to cannot import _png error
numpy = ">=1.24.0"
optuna = ">=2.8.0"
pandas = ">=1.1.5"
plotly = "^5"
pydantic = ">=1.1.0"
seaborn = ">=0.10.0"
scikit-learn = "^1.0.1"
shap = ">0.43" # versions of 0.39 and less require numpy 1.23 and less
xgboost = "<2.2.0" # from here saving as binary is not default anymore
[tool.poetry.group.dev.dependencies]
ipython = "^7.10.0"
jupyter_core = "^4.7.0"
myst-parser = ">=0.14.0, <1.0.0"
pre-commit = "^2.9.3"
pytest = "^6.2.5"
setuptools = "^51.1.0"
twine = "^1.13.0"
wheel = "^0.36.2"
sphinx = "^6.2.1"
sphinx-autobuild = ">=2020.9.1"
sphinx-autoapi = ">=2.0.1.1"
sphinx-rtd-theme = "^1.0.0"
[tool.poetry.extras]
jupyter = ["ipython", "jupyter_core", "notebook"]
full = ["ipython", "jupyter_core", "notebook"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"