-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (32 loc) · 1.2 KB
/
pyproject.toml
File metadata and controls
36 lines (32 loc) · 1.2 KB
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "pet_brain_preprocessing"
version = "0.1.1"
description = "Robust Nipype pipeline for preprocessing PET BIDS brain data. Initially developed for 18F FDG PET brain images acquired by project NEMO at the Dep of Neurology, University Medical Center Groningen. https://www.movementdisordersgroningen.com/nl/nemo"
authors = [
{ name = "Jelle R. Dalenberg", email = "[email protected]" },
]
license = { file = "LICENSE" }
readme = "README.md"
classifiers = [
'Development Status :: 1 - Concept',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache License 2.0',
'Operating System :: Unix',
'Programming Language :: Python :: 3.9'
]
requires-python = ">=3.9"
dependencies = [
'nipype>=1.8.5',
'bids',
'templateflow>=23.0.0',
'nibabel>=5.0.1',
'NetworkX==2.6',
]
[project.scripts]
pet_brain_preprocessing = "petbrainpreprocessing.pet_brain_preprocessing:main"
[project.urls]
"Homepage" = "https://github.com/jrdalenberg/pet-brain-preprocessing"
"Bug Tracker" = "https://github.com/jrdalenberg/pet-brain-preprocessing/issues"