forked from nipreps/smriprep
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
124 lines (114 loc) · 2.38 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
[metadata]
url = https://github.com/poldracklab/smriprep
author = The CRN developers
author_email = code@oscaresteban.es
maintainer = Oscar Esteban
maintainer_email = code@oscaresteban.es
description = sMRIPrep (Structural MRI PREProcessing) pipeline
long_description = file:README.rst
long_description_content_type = text/x-rst; charset=UTF-8
license = 3-clause BSD
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Science/Research
Topic :: Scientific/Engineering :: Image Recognition
License :: OSI Approved :: BSD License
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
[options]
python_requires = >=3.5
install_requires =
indexed_gzip >= 0.8.8
lockfile
matplotlib >= 2.2.0
nibabel >= 3.0.1
nipype >= 1.4
niworkflows ~= 1.2.3
numpy
packaging
pybids >= 0.10.2
pyyaml
templateflow ~= 0.6
test_requires =
coverage
codecov
pytest
packages = find:
[options.exclude_package_data]
* = tests
[options.extras_require]
datalad = datalad
doc =
nbsphinx
packaging
pydot >= 1.2.3
pydotplus
sphinx >= 2.1.2, < 3
sphinx-argparse
sphinx_rtd_theme
sphinxcontrib-apidoc ~= 0.3.0
sphinxcontrib-napoleon
sphinxcontrib-versioning
docs =
%(doc)s
duecredit = duecredit
resmon = psutil >= 5.4.0
style =
flake8
test =
coverage
codecov
pytest
pytest-cov
tests =
%(test)s
all =
%(datalad)s
%(doc)s
%(duecredit)s
%(resmon)s
%(test)s
[options.package_data]
smriprep =
VERSION
data/boilerplate.bib
data/io_spec.json
data/itkIdentityTransform.txt
[options.entry_points]
console_scripts =
smriprep=smriprep.cli.run:main
[versioneer]
VCS = git
style = pep440
versionfile_source = smriprep/_version.py
versionfile_build = smriprep/_version.py
tag_prefix =
parentdir_prefix =
[flake8]
max-line-length = 99
doctests = False
exclude=*build/
ignore =
W503
per-file-ignores =
**/__init__.py : F401
docs/conf.py : E265
[tool:pytest]
norecursedirs = .git
addopts = -svx --doctest-modules
doctest_optionflags = ALLOW_UNICODE NORMALIZE_WHITESPACE
env =
PYTHONHASHSEED=0
filterwarnings =
ignore::DeprecationWarning
[coverage:run]
branch = True
source = smriprep
omit =
*/tests/*
relative_files = True
[coverage:paths]
source =
smriprep/
*/site-packages/smriprep