-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
42 lines (36 loc) · 1.05 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
[tool.poetry]
name = "petdeface"
version = "0.2.2"
description = "A nipype PET and MR defacing pipeline for BIDS datasets utilizing FreeSurfer's MiDeFace."
authors = ["Martin Nørgaard <[email protected]>", "Anthony Galassi <[email protected]>", "Murat Bilgel <[email protected]>"]
license = "MIT"
readme = "README.md"
include = [
"petdeface/*",
"pyproject.toml",
]
# please update the bids version to the latest compliant version when making modifications to this code here
[tool.bids]
bids_version = "1.8.0"
[tool.poetry.dependencies]
python = ">=3.10, <4.0"
setuptools = "^68.1.2"
petutils = "^0.0.1"
niworkflows = "^1.11.0"
[tool.poetry.group.dev.dependencies]
black = "^23.7.0"
flake8 = "^6.1.0"
isort = "^5.12.0"
pre-commit = "^3.3.3"
pytest = "^7.4.2"
sphinx = "^7.2.6"
sphinx-rtd-theme = "^3.0.1"
[tool.isort]
profile = "black"
force_single_line = true
lines_after_imports = 2
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
petdeface = 'petdeface.petdeface:main'