-
Notifications
You must be signed in to change notification settings - Fork 45
/
setup.cfg
151 lines (140 loc) · 2.92 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
[metadata]
name = phys2bids
url = https://github.com/physiopy/phys2bids
download_url = https://github.com/physiopy/phys2bids
author = phys2bids developers
maintainer = Stefano Moia
maintainer_email = [email protected]
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Science/Research
License :: OSI Approved :: Apache Software License
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
license = Apache-2.0
description = Python library to convert physiological data files into BIDS format
long_description = file:README.md
long_description_content_type = text/markdown; charset=UTF-8
platforms = OS Independent
provides =
phys2bids
[options]
python_requires = >=3.6.1
install_requires =
numpy >=1.10, <1.24
matplotlib >=3.1.1, !=3.3.0rc1
PyYAML >=5.1
tests_require =
pytest >=5.3
test_suite = pytest
zip_safe = False
packages = find:
include_package_data = True
[options.extras_require]
spike2 =
sonpy >=1.7.5;python_version=='3.7.*,3.8.*,3.9.*'
acq =
bioread >=1.0.5
mat=
pymatreader >=0.0.24
duecredit =
duecredit
doc =
sphinx >=2.0
sphinx-argparse
sphinx_rtd_theme
style =
flake8 >=4.0
black
isort <6.0.0
pydocstyle
codespell
interfaces =
%(acq)s
%(mat)s
%(spike2)s
test =
pytest >=5.3
pytest-cov
coverage
%(interfaces)s
%(style)s
all =
%(doc)s
%(duecredit)s
%(interfaces)s
%(style)s
%(test)s
[options.package_data]
abagen =
phys2bids/data/*
phys2bids/heuristics/*
phys2bids/tests/data/*
[options.entry_points]
console_scripts =
phys2bids=phys2bids.phys2bids:_main
[flake8]
doctest = True
exclude =
*build/
heuristics
tests
_version.py
./phys2bids/cli/__init__.py
./phys2bids/tests/*
versioneer.py
ignore = E126, E402, W503, E226, F401, F811
max-line-length = 88
extend-ignore = E203, E501
extend-select = B950
per-file-ignores =
workflow.py:D401
[isort]
profile = black
skip_gitignore = true
extend_skip =
.autorc
.coverage*
.readthedocs.yml
.zenodo.json
codecov.yml
setup.py
versioneer.py
phys2bids/_version.py
skip_glob =
docs/*
[pydocstyle]
convention = numpy
match =
phys2bids/*.py
match_dir = phys2bids/[^tests,^heuristics]*
[codespell]
skip = venvs,.venv,versioneer.py,.git,build,./docs/_build
write-changes =
count =
quiet-level = 3
[tool:pytest]
doctest_optionflags = NORMALIZE_WHITESPACE
xfail_strict = true
addopts = -rx
[versioneer]
VCS = git
style = pep440
versionfile_source = phys2bids/_version.py
versionfile_build = phys2bids/_version.py
tag_prefix =
parentdir_prefix =
[coverage:run]
branch = True
omit =
phys2bids/tests/*
docs/*
setup.py
versioneer.py
doi.py
__init__.py
*/__init__.py
*/*/__init__.py