forked from nipreps/sdcflows
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
104 lines (96 loc) · 2.25 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
[metadata]
name = sdcflows
url = https://github.com/poldracklab/sdcflows
author = The SDCflows developers
author_email = [email protected]
maintainer = Oscar Esteban
maintainer_email = [email protected]
description = Susceptibility Distortion Correction (SDC) workflows for EPI MR schemes.
long_description = file:README.rst
long_description_content_type = text/x-rst; charset=UTF-8
license = Apache-2.0
classifiers =
Development Status :: 2 - Pre-Alpha
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
setup_requires =
setuptools >=40.8
install_requires =
nibabel >=2.2.1
niflow-nipype1-workflows ~= 0.0.1
nipype >= 1.3.1
niworkflows ~= 1.0.0
numpy
pybids ~=0.9.2
templateflow ~= 0.4
test_requires =
codecov
coverage
pytest
packages = find:
include_package_data = True
[options.exclude_package_data]
* = tests
[options.extras_require]
doc =
sphinx >= 2.1.2
pydot >= 1.2.3
pydotplus
sphinx_rtd_theme
sphinxcontrib-apidoc ~= 0.3.0
sphinxcontrib-napoleon
sphinxcontrib-versioning
docs =
%(doc)s
tests =
pytest
pytest-xdist
pytest-cov == 2.5.1
coverage
all =
%(doc)s
%(tests)s
[options.package_data]
sdcflows =
data/*.json
data/*.nii.gz
data/*.mat
VERSION
[options.entry_points]
console_scripts =
sdcflows=sdcflows.cli.run:main
[versioneer]
VCS = git
style = pep440
versionfile_source = sdcflows/_version.py
versionfile_build = sdcflows/_version.py
tag_prefix =
parentdir_prefix =
[flake8]
max-line-length = 99
doctests = False
exclude =
*build/
docs/sphinxext/
docs/tools/
putty-ignore =
*/__init__.py : +F401
docs/conf.py : +E265
/^\s*\.\. _.*?: http/ : +E501
[tool:pytest]
norecursedirs = .git
addopts = -vsx --doctest-modules
doctest_optionflags = ALLOW_UNICODE NORMALIZE_WHITESPACE
env =
PYTHONHASHSEED=0
filterwarnings =
ignore::DeprecationWarning
ignore::PendingDeprecationWarning
ignore:cmp not installed:UserWarning
ignore:This has not been fully tested:UserWarning