-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.cfg
75 lines (69 loc) · 1.44 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
[metadata]
name = aroma
url = https://github.com/ME-ICA/aroma
author = tedana developers
author_email = [email protected]
maintainer = tedana developers
maintainer_email = [email protected]
description = "A port of the ICA-AROMA package."
long_description = file:README.md
long_description_content_type = text/x-md; charset=UTF-8
license = Apache 2.0
classifiers =
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
[options]
python_requires = >= 3.6
install_requires =
numpy >=1.9.3, !=*rc*
nilearn
pandas
nibabel
seaborn
tests_require =
pytest >=5.3
test_suite = pytest
packages = find:
include_package_data = False
[options.package_data]
* =
data/*
[options.extras_require]
doc =
sphinx
sphinx_rtd_theme
style =
flake8 >=3.7
flake8-docstrings >=1.5
test =
pytest
pytest-cov
coverage
%(style)s
all =
%(doc)s
%(test)s
[versioneer]
VCS = git
style = pep440
versionfile_source = aroma/_version.py
versionfile_build = aroma/_version.py
tag_prefix =
parentdir_prefix =
[flake8]
exclude=
*build/
_version.py
tests
ignore = E126, E203, E402, W503
max-line-length = 99
per-file-ignores =
*/__init__.py:F401
[tool:pytest]
doctest_optionflags = NORMALIZE_WHITESPACE
xfail_strict = true
addopts = -rx