-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
38 lines (32 loc) · 870 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
[tool.poetry]
name = "rektgbm"
version = "0.1.6"
description = "No-brainer machine learning solution to achieve satisfactory performance"
authors = ["RektPunk <rektpunk@gmail.com>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/RektPunk/RektGBM"
classifiers = [
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Libraries :: Python Modules"
]
[tool.poetry.dependencies]
python = "^3.12"
numpy = "^2.0.1"
pandas = "^2.2.2"
scikit-learn = "^1.5.1"
lightgbm = "^4.5.0"
xgboost = "^2.1.1"
optuna = "^3.6.1"
typer = "^0.12.3"
pyarrow = "^17.0.0"
fastparquet = "^2024.5.0"
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.8.0"
pytest = "^8.3.2"
pytest-cov = "^5.0.0"
[tool.poetry.scripts]
rektgbm = "rektgbm.cli:run"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"