forked from ME-ICA/tedana
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
90 lines (83 loc) · 2.01 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/ME-ICA/tedana
license = LGPL 2.1
author = tedana developers
author_email = [email protected]
maintainer = Elizabeth DuPre
maintainer_email = [email protected]
description = TE-Dependent Analysis (tedana) of multi-echo functional magnetic resonance imaging (fMRI) data.
description-file = README.md
long_description = file:README.md
long_description_content_type = text/markdown
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Science/Research
Topic :: Scientific/Engineering :: Information Analysis
License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
[options]
python_requires = >= 3.6
install_requires =
bokeh<2.3.0
mapca>=0.0.3
matplotlib
nibabel>=2.5.1
nilearn>=0.7
numpy>=1.16
pandas>=0.24
scikit-learn>=0.21
scipy>=1.2.0
threadpoolctl
jinja2==3.0.1
packages = find:
include_package_data = False
[options.extras_require]
doc =
sphinx>=1.5.3
sphinx_copybutton
sphinx_rtd_theme
sphinx-argparse
sphinxcontrib-bibtex
tests =
codecov
coverage<5.0
flake8>=3.7
flake8-black
flake8-isort
pytest
pytest-cov
requests
sympy
all =
%(doc)s
%(tests)s
[options.entry_points]
console_scripts =
t2smap = tedana.workflows.t2smap:_main
tedana = tedana.workflows.tedana:_main
sage = tedana.workflows.sage.workflow_sage:_main
[options.package_data]
* =
resources/config/*
reporting/data/*
reporting/data/html/*
[versioneer]
VCS = git
style = pep440
versionfile_source = tedana/_version.py
versionfile_build = tedana/_version.py
tag_prefix =
parentdir_prefix =
[flake8]
max-line-length = 99
exclude=*build/
ignore = E203,E402,W503
per-file-ignores =
*/__init__.py:F401
docstring-convention = numpy
[tool:pytest]
log_cli = true