-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathpyproject.toml
More file actions
130 lines (117 loc) · 5.84 KB
/
Copy pathpyproject.toml
File metadata and controls
130 lines (117 loc) · 5.84 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
# SPDX-License-Identifier: GPL-3.0-or-later
[build-system]
requires = ['setuptools >= 62.2.0', 'wheel', 'argparse-manpage[setuptools]', 'tomli >= 1.1.0 ; python_version < "3.11"']
build-backend = 'setuptools.build_meta'
[project]
name = 'bidscoin'
description = 'Converts and organises raw MRI data-sets according to the Brain Imaging Data Structure (BIDS)'
version = '4.6.3.dev0'
readme = 'README.rst'
requires-python = '>= 3.9'
license = {file = 'LICENSE.txt'}
keywords = ['bids','mri','imaging','neuroimaging','dicom','par','rec','PsychoPy','NeuroBS','nifti','bidsapp','defacing','echo-combination','skull-stripping','HPC']
authors = [{email = 'm.zwiers@donders.ru.nl'}, {name = 'Marcel Zwiers'}]
classifiers = ['Programming Language :: Python :: 3',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Operating System :: OS Independent',
'Intended Audience :: Science/Research']
dependencies = ['pandas',
'matplotlib',
'numpy',
'pydicom >= 2',
'PyQt6',
'pyyaml',
'tomli >= 1.1.0 ; python_version < "3.11"',
'rich',
'multiecho >= 0.25',
'python-dateutil',
'nibabel',
'bids-validator',
'jsonschema',
'bidsschematools',
'drmaa',
'duecredit']
[project.optional-dependencies]
dcm2niix2bids = ['dcm2niix']
spec2nii2bids = ['spec2nii >= 0.6.1']
deface = ['pydeface']
all = ['bidscoin[dcm2niix2bids,spec2nii2bids,deface]']
dev = ['bidscoin[spec2nii2bids,deface]', 'tox', 'pytest', 'sphinx-rtd-theme', 'myst-parser', 'sphinx_design']
extras = ['psychopy', 'dicom-parser']
[project.urls]
documentation = 'https://bidscoin.readthedocs.io'
homepage = 'https://github.com/Donders-Institute/bidscoin'
repository = 'https://github.com/Donders-Institute/bidscoin'
[project.scripts]
bidscoin = 'bidscoin.bcoin:main'
bidseditor = 'bidscoin.bidseditor:main'
bidsmapper = 'bidscoin.bidsmapper:main'
bidscoiner = 'bidscoin.bidscoiner:main'
fixmeta = 'bidscoin.bidsapps.fixmeta:main'
echocombine = 'bidscoin.bidsapps.echocombine:main'
deface = 'bidscoin.bidsapps.deface:main'
medeface = 'bidscoin.bidsapps.medeface:main'
skullstrip = 'bidscoin.bidsapps.skullstrip:main'
slicereport = 'bidscoin.bidsapps.slicereport:main'
dicomsort = 'bidscoin.utilities.dicomsort:main'
bidsparticipants = 'bidscoin.utilities.bidsparticipants:main'
rawmapper = 'bidscoin.utilities.rawmapper:main'
physio2tsv = 'bidscoin.utilities.physio2tsv:main'
plotphysio = 'bidscoin.utilities.plotphysio:main'
[tool.build_manpages]
manpages = ['man/bidscoin.1:function=get_parser:pyfile=bidscoin/cli/_bcoin.py',
'man/bidseditor.1:function=get_parser:pyfile=bidscoin/cli/_bidseditor.py',
'man/bidsmapper.1:function=get_parser:pyfile=bidscoin/cli/_bidsmapper.py',
'man/bidscoiner.1:function=get_parser:pyfile=bidscoin/cli/_bidscoiner.py',
'man/fixmeta.1:function=get_parser:pyfile=bidscoin/cli/_fixmeta.py',
'man/echocombine.1:function=get_parser:pyfile=bidscoin/cli/_echocombine.py',
'man/deface.1:function=get_parser:pyfile=bidscoin/cli/_deface.py',
'man/medeface.1:function=get_parser:pyfile=bidscoin/cli/_medeface.py',
'man/skullstrip.1:function=get_parser:pyfile=bidscoin/cli/_skullstrip.py',
'man/slicereport.1:function=get_parser:pyfile=bidscoin/cli/_slicereport.py',
'man/dicomsort.1:function=get_parser:pyfile=bidscoin/cli/_dicomsort.py',
'man/bidsparticipants.1:function=get_parser:pyfile=bidscoin/cli/_bidsparticipants.py',
'man/rawmapper.1:function=get_parser:pyfile=bidscoin/cli/_rawmapper.py',
'man/physio2tsv.1:function=get_parser:pyfile=bidscoin/cli/_physio2tsv.py',
'man/plotphysio.1:function=get_parser:pyfile=bidscoin/cli/_plotphysio.py']
[tool.setuptools.cmdclass]
build_py = "build_manpages.build_py"
install = "build_manpages.install"
build_manpages = "build_manpages.build_manpages"
[tool.setuptools.package-data]
'*' = ['*.yaml', 'schema.json', 'BIDS_VERSION', 'SCHEMA_VERSION', 'bidscoin.ico', 'bidscoin_logo.png', 'rightarrow.png'] # package names should match these glob patterns (["*"] by default)
[tool.pytest.ini_options]
testpaths = ['tests']
[tool.tox]
legacy_tox_ini = """
[tox]
min_version = 4.0
envlist = py39, py310, py311, py312, py313, docs
[testenv]
extras = all
deps = pytest
jsonschema
argparse-manpage[setuptools]
allowlist_externals = rm
setenv = DUECREDIT_ENABLE=yes
commands = rm -f .duecredit.p
pytest
rm .duecredit.p
[testenv:docs]
deps = sphinx-rtd-theme
myst-parser
sphinx_design
linkchecker
tomli >= 1.1.0 ; python_version < "3.11"
pyspelling
allowlist_externals = make
commands = make -C docs html
linkchecker docs/_build/html/index.html
pyspelling -c docs/.pyspelling.yml
"""
# Ref: https://github.com/codespell-project/codespell#using-a-config-file
[tool.codespell]
skip = '.git,*.pdf,*.svg,go.sum'
check-hidden = true
ignore-regex = '\b(PULS|TE|ALS)\b'
ignore-words-list = 'uptodate,mis'