-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.cfg
51 lines (49 loc) · 1.03 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
[metadata]
name = niviz
description = Flexibly automate QC visualization reports using pre-existing outputs
long_description = file:README.md
keywords = neuroimaging, visualization, automation
classifiers =
Intended Audience :: Science/Research
Topic :: Scientific/Engineering
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
project_urls =
GitHub = https://github.com/tigrlab/niviz
Bug TRACKER = https://github.com/tigrlab/niviz/issues
Source Code = https://github.com/tigrlab/niviz
[options]
python_requires = >= 3.7
install_requires =
attrs
packaging
numpy
PyYAML
matplotlib >= 2.2.0
pybids >= 0.11.0
niworkflows == 1.3.2
svgutils == 0.3.1
packages = find:
zip_safe = true
[options.extras_require]
# To use "pip install niviz[name]"
doc =
sphinx >= 3
sphinx_rtd_theme >= 0.5.0
sphinx-multiversion
sphinx-autodoc-typehints
docs =
%(doc)s
lint =
flake8 >= 3.7.0
yapf >= 0.30.0
test =
pytest >= 6.2.4
all =
%(doc)s
%(lint)s
%(test)s
buildtest =
%(lint)s
%(test)s