-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.cfg
90 lines (82 loc) · 1.84 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
[metadata]
url = https://github.com/nipreps/nirodents
author = The NiPreps Developers
author_email = nipreps@gmail.com
maintainer = Eilidh MacNicol
maintainer_email = nipreps@gmail.com
description = NeuroImaging Rodents (NiRodents) provides processing tools for magnetic resonance images of the rodent brain.
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.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
[options]
python_requires = >=3.8
setup_requires =
setuptools >= 45
setuptools_scm >= 6.2
wheel
install_requires =
attrs
networkx
nibabel >= 3.0.1
nipype >= 1.7.1
niworkflows >= 1.5.2
scipy >= 1.8
templateflow >= 0.7.1
test_requires =
coverage < 5
pytest >= 4.4
pytest-cov
pytest-xdist >= 1.28, <2.0
packages = find:
[options.entry_points]
console_scripts =
artsBrainExtraction=nirodents.cli.brainextraction:main
plot_mask=nirodents.cli.plotmask:main
[options.package_data]
nirodents =
data/*.json
[options.packages.find]
exclude =
*.tests
[options.extras_require]
doc =
pydot >= 1.2.3
pydotplus
sphinx >= 2.1.2
sphinx_rtd_theme
sphinxcontrib-apidoc ~= 0.3.0
sphinxcontrib-napoleon
sphinxcontrib-versioning
docs =
%(doc)s
duecredit =
duecredit
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
%(style)s
%(test)s
[flake8]
max-line-length = 99
doctests = False
ignore =
W503
E203
exclude=*build/