-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
58 lines (52 loc) · 1.23 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
53
54
55
56
[tool.poetry]
name = "petprep_extract_tacs"
version = "0.0.2"
description = "PETPrep Extract Time Activity Curves Workflow"
authors = ["Martin Norgaard <martin.noergaard@di.ku.dk>"]
homepage = "https://github.com/mnoergaard/petprep_extract_tacs"
license = "MIT"
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.9',
]
[tool.poetry.dependencies]
python = ">=3.9,<3.12"
click = "8.1.3"
contourpy = "1.0.7"
matplotlib = "3.7.1"
networkx = "3.1"
nibabel = "5.1.0"
nipype = "1.8.6"
numpy = "1.24.2"
pandas = "2.0.0"
patsy = "0.5.3"
pillow = "9.5.0"
scipy = ">=1.3"
seaborn = "0.12.2"
statsmodels = "0.13.5"
traits = "6.3.2"
rdflib = "6.3.2"
astor = "0.8.1"
bids = "0.0"
bids-validator = "1.11.0"
docopt = "0.6.2"
formulaic = "0.5.2"
interface-meta = "1.3.0"
num2words = "0.5.12"
pybids = ">=0.16.1"
sqlalchemy = "1.3.24"
wrapt = "1.15.0"
niworkflows = "1.7.9"
ipython = "8.13.2"
petutils = "^0.1.0"
[tool.poetry.dev-dependencies]
pytest = "*"
[tool.poetry.group.dev.dependencies]
nipreps = "^1.0"
black = "^24.4.2"
pytest = "^8.2.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"