forked from xRiskLab/xBooster
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (32 loc) · 742 Bytes
/
pyproject.toml
File metadata and controls
37 lines (32 loc) · 742 Bytes
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
[tool.poetry]
name = "xbooster"
version = "0.2.2"
description = "Explainable Boosted Scoring"
authors = ["xRiskLab <contact@xrisklab.ai>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.9,<3.11"
black = {extras = ["jupyter"], version = "^24.2.0"}
duckdb = "^0.9.2"
ipykernel = "6.25.2"
matplotlib = "^3.8.0"
numpy = "1.26.0"
pandas = "2.0.3"
pylint = "^3.0.3"
scipy = "^1.11.4"
scikit-learn = "^1.3.0"
shap = "^0.44.0"
xgboost = "^2.0.0"
pytest = "^8.0.0"
pre-commit = "^3.6.1"
jupyter = "^1.0.0"
[tool.poetry.group.dev.dependencies]
ipykernel = "^6.25.2"
pytest = "^8.0.0"
black = "^24.2.0"
[tool.black]
line-length = 60
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"