-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (33 loc) · 888 Bytes
/
Copy pathpyproject.toml
File metadata and controls
38 lines (33 loc) · 888 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
37
38
[tool.poetry]
name = "pypsps"
version = "0.0.12"
description = "Predictive State Propensity Subclassification (PSPS) in Python (keras)"
authors = ["Georg M. Goerg <im@gmge.org>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/gmgeorg/pypsps.git"
[tool.poetry.dependencies]
python = ">=3.12,<4.0.0"
numpy = ">=1.11.0"
pandas = ">=1.0.0"
tensorflow = ">=2.11.0"
tensorflow_probability = ">=0.18.0"
tf-keras = ">=2.14.1"
tqdm = ">=4.62"
pypress = { git = "https://github.com/gmgeorg/pypress.git", rev = "v0.0.6" }
[tool.poetry.group.dev.dependencies]
flake8 = "^7.0.0"
pre-commit = "^3.7.0"
pytest = ">=6.1.1"
ruff = "^0.3.7"
seaborn = "^0.13.2"
scikit-learn = "^1.6.1"
optuna = "^4.2.1"
pydot = "^3.0.4"
scikit-survival = "^0.24.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 100
fix = true