forked from nipreps/mriqc-learn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
93 lines (85 loc) · 1.97 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
[metadata]
author = The NiPreps developers
author_email = [email protected]
classifiers =
Development Status :: 2 - Pre-Alpha
Intended Audience :: Science/Research
Topic :: Scientific/Engineering :: Image Recognition
License :: OSI Approved :: Apache Software License
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
description = Learning on MRIQC-generated image quality metrics (IQMs).
license = Apache-2.0
long_description = file:docs/about.rst
long_description_content_type = text/x-rst; charset=UTF-8
name = mriqc-learn
url = https://github.com/nipreps/mriqc-learn
[options]
python_requires = >=3.7
install_requires =
numpy >=1.20, <1.22; python_version<'3.8'
numpy ~=1.20; python_version>='3.8'
joblib
pandas >=1.0, <1.4; python_version<'3.8'
pandas ~=1.0; python_version>='3.8'
scikit-learn ~= 1.0
packages = find:
include_package_data = True
zip_safe = True
[options.exclude_package_data]
* = tests
[options.extras_require]
doc =
furo ~= 2021.10.09
pydot
pydotplus
sphinx
sphinxcontrib-apidoc
sphinxcontrib-napoleon
docs =
%(doc)s
mem =
psutil
test =
codecov
coverage
pytest
pytest-cov
pytest-env
pytest-xdist
tests =
%(test)s
all =
%(doc)s
%(mem)s
%(test)s
[options.package_data]
mriqc_learn =
datasets/*.tsv
[flake8]
max-line-length = 99
doctests = False
ignore =
W503
E231
E203
exclude =
*build/
docs/sphinxext/
docs/tools/
per-file-ignores =
**/__init__.py : F401
docs/conf.py : E265
[tool:pytest]
norecursedirs = .git
addopts = -vsx --doctest-modules
doctest_optionflags = ALLOW_UNICODE NORMALIZE_WHITESPACE NUMBER
env =
PYTHONHASHSEED=0
filterwarnings =
ignore::DeprecationWarning
ignore::PendingDeprecationWarning
ignore:cmp not installed:UserWarning
ignore:This has not been fully tested:UserWarning