forked from nipreps/niworkflows
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
138 lines (128 loc) · 2.86 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
[metadata]
author = The NiPreps Developers
author_email = nipreps@gmail.com
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Science/Research
Topic :: Scientific/Engineering :: Image Recognition
License :: OSI Approved :: BSD License
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
description = NeuroImaging Workflows provides processing tools for magnetic resonance images of the brain.
license = 3-clause BSD
license_file = LICENSE
long_description = file:README.rst
long_description_content_type = text/x-rst; charset=UTF-8
project_urls =
Documentation = https://www.nipreps.org/niworkflows
GitHub = https://github.com/nipreps/niworkflows
Zenodo = https://doi.org/10.5281/zenodo.2650331
url = https://github.com/nipreps/niworkflows
[options]
python_requires = >= 3.6
install_requires =
attrs
jinja2
matplotlib >= 2.2.0
nibabel >= 3.0.1
nilearn >= 0.2.6, != 0.5.0, != 0.5.1
nipype >= 1.3.1
nitransforms >= 20.0.0rc3,<20.2
packaging
pandas
pybids >= 0.10.2
PyYAML
scikit-image
scikit-learn
scipy
seaborn
svgutils
transforms3d
templateflow >= 0.6
test_requires =
coverage < 5
pytest >= 4.4
pytest-cov
pytest-xdist >= 1.28
packages = find:
[options.entry_points]
console_scripts =
niworkflows-boldref=niworkflows.cli.boldref:main
[options.package_data]
niworkflows =
data/*.txt
data/*.json
data/sentinel.nii.gz
reports/default.yml
reports/report.tpl
[options.packages.find]
exclude =
*.tests
[options.extras_require]
doc =
pydot >= 1.2.3
pydotplus
sphinx >= 2.1.2, < 3.0
sphinx_rtd_theme
sphinxcontrib-apidoc ~= 0.3.0
sphinxcontrib-napoleon
sphinxcontrib-versioning
docs =
%(doc)s
duecredit =
duecredit
citeproc-py != 0.5.0
pointclouds =
pyntcloud
style =
flake8 >= 3.7.0
test =
coverage < 5
pytest >= 4.4
pytest-cov
pytest-xdist >= 1.28
tests =
%(test)s
all =
%(doc)s
%(duecredit)s
%(pointclouds)s
%(style)s
%(test)s
[versioneer]
VCS = git
style = pep440
versionfile_source = niworkflows/_version.py
versionfile_build = niworkflows/_version.py
tag_prefix =
parentdir_prefix =
[flake8]
max-line-length = 99
doctests = False
ignore =
W503
exclude=*build/
per-file-ignores =
**/__init__.py : F401
docs/conf.py : E265
[tool:pytest]
norecursedirs = .git
addopts = -svx --doctest-modules
doctest_optionflags = ALLOW_UNICODE NORMALIZE_WHITESPACE ELLIPSIS
env =
PYTHONHASHSEED=0
filterwarnings =
ignore::DeprecationWarning
junit_family=xunit2
[coverage:run]
branch = True
omit =
*/tests/*
niworkflows/_version.py
niworkflows/conftest.py
[coverage:report]
# Regexes for lines to exclude from consideration
exclude_lines =
raise NotImplementedError
warnings\.warn