-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
157 lines (142 loc) · 3.18 KB
/
setup.cfg
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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
[metadata]
classifiers =
Development Status :: 5 - Production/Stable
Environment :: Console
Intended Audience :: Science/Research
Topic :: Scientific/Engineering :: Image Recognition
License :: OSI Approved :: Apache Software License
Operating System :: POSIX :: Linux
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Topic :: Scientific/Engineering :: Bio-Informatics
Topic :: Scientific/Engineering :: Image Processing
description = Automated Quality Control and visual reports for Quality Assesment of structural (T1w, T2w) and functional MRI of the brain.
license = Apache License, Version 2.0
long_description = file:long_description.rst
long_description_content_type = text/x-rst; charset=UTF-8
maintainer = The NiPreps developers
maintainer_email = [email protected]
project_urls =
Documentation = https://mriqc.readthedocs.io/
Manuscript = https://doi.org/10.1371/journal.pone.0184661
Sci Dat Paper = https://doi.org/10.1038/s41597-019-0035-4
Web API = https://mriqc.nimh.nih.gov/
url = https://github.com/nipreps/mriqc
[options]
python_requires = >= 3.6
install_requires =
jinja2
matplotlib
nibabel >= 3.0.1,<4.0
nilearn >= 0.2.6, != 0.5.0, != 0.5.1
nipype ~= 1.4
niworkflows ~= 1.4.0
numpy
pandas >= 0.21.0
pybids >= 0.12.1
PyYAML
scipy
toml
test_requires =
coverage
mock
pytest
pytest-cov
pytest-xdist
packages = find:
include_package_data = True
[options.package_data]
mriqc =
data/*.yml
data/*.tfm
data/csv/*.csv
data/mclf_*.pklz
data/reports/*.rst
data/reports/*.html
data/reports/resources/*
data/reports/embed_resources/*
data/tests/*
data/mni/*.nii.gz
[options.packages.find]
exclude =
*.tests
[options.extras_require]
classifier =
xgboost
joblib
classifiers =
%(classifier)s
doc =
nipype
packaging
pydot>=1.2.3
pydotplus
sphinx-argparse
sphinx_rtd_theme
sphinx~=3.5
docs =
%(doc)s
full =
dipy
nitime
scikit-learn>=0.19.0
seaborn
statsmodels
templateflow
xvfbwrapper
%(classifier)s
fulls =
%(full)s
notebook =
ipython
jupyter
nipy
notebooks =
%(notebook)s
other =
scikit-image
others =
%(other)s
test =
coverage
mock
pytest
pytest-cov
pytest-xdist
tests =
%(test)s
all =
%(classifier)s
%(doc)s
%(full)s
%(notebook)s
%(test)s
[options.entry_points]
console_scripts =
mriqc=mriqc.cli.run:main
mriqc_clf=mriqc.bin.mriqc_clf:main
mriqc_plot=mriqc.bin.mriqc_plot:main
abide2bids=mriqc.bin.abide2bids:main
fs2gif=mriqc.bin.fs2gif:main
dfcheck=mriqc.bin.dfcheck:main
nib-hash=mriqc.bin.nib_hash:main
participants=mriqc.bin.subject_wrangler:main
mriqc_labeler=mriqc.bin.labeler:main
mriqcwebapi_test=mriqc.bin.mriqcwebapi_test:main
[versioneer]
VCS = git
style = pep440
versionfile_source = mriqc/_version.py
versionfile_build = mriqc/_version.py
tag_prefix =
parentdir_prefix =
[flake8]
max-line-length = 99
doctests = True
ignore =
E266
W503
exclude=*build/
per-file-ignores =
*/__init__.py: F401