-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
52 lines (42 loc) · 1.27 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
[tool.poetry]
name = "fpboost"
version = "0.1.0"
description = "FPBoost: a gradient boosting model for survival analysis that builds hazard functions as a combination of fully parametric hazards."
authors = ["Alberto Archetti <alberto.archetti@polimi.it>", "Eugenio Lomurno <eugenio.lomurno@polimi.it>", "Diego Piccinotti <diego@chattermill.io>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.10.0,<3.13.0"
urllib3 = "^1.26.8"
numpy = "^1.26.4"
pandas = "^2.2.1"
scikit-survival = "^0.22.2"
torch = "^2.3.1"
[tool.poetry.group.code_quality.dependencies]
black = {extras = ["jupyter"], version = "^24.8.0"}
flake8 = "^7.0.0"
pylint = "^3.1.0"
mypy = "^1.9.0"
isort = "^5.13.2"
pre-commit = "^3.6.2"
[tool.poetry.group.testing.dependencies]
pytest-cov = "^4.1.0"
pytest-randomly = "^3.15.0"
[tool.poetry.group.experiments.dependencies]
pycox = "^0.2.3"
ray = {extras = ["default"], version = "~2.20.0"}
optuna = "^3.6.1"
sklearndf = "^2.3.0"
numba = "^0.59.1"
notebook = "^6.4.1"
ipywidgets = "^8.1.2"
matplotlib = "^3.9.0"
seaborn = "^0.13.2"
[tool.poetry.group.docs.dependencies]
sphinx-rtd-theme = "^2.0.0"
numpydoc = "^1.8.0"
nbsphinx = "^0.9.5"
sphinxcontrib-jquery = "^4.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"