-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
41 lines (34 loc) · 858 Bytes
/
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
[tool.poetry]
name = "xgboost-mlflow"
version = "0.1.0"
description = "Run experiments of custom XGBoost model using MLFlow deployed in Google Cloud"
authors = ["Igor Sulim <[email protected]>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.12"
xgboost = "^2.0.3"
click = "^8.1.7"
omegaconf = "^2.3.0"
python-dotenv = "^1.0.1"
optuna = "^3.6.1"
scikit-learn = "1.4.2"
imblearn = "^0.0"
pandas = "^2.2.2"
mlflow = "^2.13.1"
setuptools = "^70.0.0"
[tool.poetry.group.dev.dependencies]
jupyter = "^1.0.0"
numpy = "^1.26.4"
matplotlib = "^3.9.0"
kaggle = "^1.6.14"
[tool.poetry.group.linters.dependencies]
mypy = "^1.10.0"
black = "^24.4.2"
isort = "^5.13.2"
[tool.poetry.group.test.dependencies]
pytest = "^8.2.1"
pytest-sugar = "^1.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"