-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathpyproject.toml
36 lines (30 loc) · 901 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
[tool.poetry]
name = "xgbse"
version = "0.3.3"
description = "Improving XGBoost survival analysis with embeddings and debiased estimators"
authors = ["Loft Data Science Team <bandits@loft.com.br>"]
readme = "README.md"
packages = [{ include = "xgbse" }]
repository = "https://github.com/loft-br/xgboost-survival-embeddings"
[tool.poetry.dependencies]
python = ">=3.9"
xgboost = "^2.1.0"
numpy = "^1.26.4"
scikit-learn = "^1.5.0"
pandas = "^2.2.0"
joblib = "^1.4.2"
lifelines = "^0.29.0"
[tool.poetry.group.docs.dependencies]
mkdocs = "^1.6.0"
mkdocs-material = "^9.5.28"
mkdocstrings = { version = ">=0.18", extras = ["python-legacy"] }
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.7.1"
pytest = "^8.2.2"
pytest-cov = "^5.0.0"
ruff = "^0.5.0"
[tool.poetry.group.benchmark.dependencies]
pycox = "0.2.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"