-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
45 lines (39 loc) · 1.19 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
[tool.poetry]
name = "paradigma"
version = "0.3.2"
description = "Paradigma - a toolbox for Digital Biomarkers for Parkinson's Disease"
authors = [ "Peter Kok <p.kok@esciencecenter.nl>",
"Vedran Kasalica <v.kaslica@esciencecenter.nl>",
"Erik Post",
"Kars Veldkamp",
"Nienke Timmermans",
"Diogo Coutinho Soriano",
"Luc Evers" ]
license = "Apache License 2.0"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
pandas = "^2.1.4"
scikit-learn = "^1.3.2"
tsdf = "^0.5.2"
pytype = "^2024.4.11"
# for the record: pytype was installed directly with pip (in the poetry environment),
# because poetry didn't handle the install for different CPU architectures
nbstripout = "^0.7.1"
[tool.poetry.group.testing.dependencies]
ipykernel = "^6.27.1"
pytest = "^7.4.3"
pytest-datadir = "^1.5.0"
pytest-cov = "^4.1.0"
papermill = "^2.5.0"
[tool.poetry.group.docs.dependencies]
sphinx = "^7.3.6"
myst-nb = "^1.1.0"
sphinx-autoapi = "^3.0.0"
sphinx-rtd-theme = "^2.0.0"
sphinx-serve = "^1.0.1"
[tool.poetry.group.dev.dependencies]
pytype = "^2024.10.11"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"