forked from wwu-mmll/confound_corrected_cpm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (32 loc) · 712 Bytes
/
pyproject.toml
File metadata and controls
35 lines (32 loc) · 712 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
# pyproject.toml
[tool.poetry]
name = "confound_corrected_cpm"
version = "0.1.0"
description = "Confound-corrected Connectome-based Predictive Modeling Python Package"
authors = [
"Nils Winter <nils.r.winter@uni-muenster.de>",
"MMLL <nils.r.winter@uni-muenster.de>"
]
packages = [{ include = "cpm" }]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "<4.0,>=3.10"
numpy = "*"
pandas = "*"
scikit-learn = "*"
pingouin = "*"
nilearn = "*"
typer = "*"
pytest = "*"
pytest-cov = "*"
bleach = "*"
tinycss2 = "*"
plotly = "*"
arakawa = "*"
netplotbrain = "*"
networkx = "*"
scikit-image = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"