-
Notifications
You must be signed in to change notification settings - Fork 34
/
pyproject.toml
259 lines (240 loc) · 5 KB
/
pyproject.toml
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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools>=64", "setuptools_scm[toml]>=8", "wheel"]
[project]
classifiers = [
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: MacOS',
'Operating System :: Microsoft :: Windows',
'Operating System :: Unix',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: Scientific/Engineering',
'Topic :: Software Development',
]
dependencies = [
'mne >= 1.6',
'netCDF4 >= 1.6.5',
'numpy >= 1.21',
'pandas >= 1.3.2',
'scikit-learn >= 1.2',
'scipy >= 1.4.0',
'tqdm',
'xarray >= 2023.11.0',
]
description = 'mne-connectivity: A module for connectivity data analysis with MNE.'
dynamic = ["version"]
keywords = [
'connectivity',
'eeg',
'ieeg',
'meg',
'neuroscience',
]
license = {file = 'LICENSE'}
maintainers = [
{email = '[email protected]', name = 'Adam Li'},
]
name = 'mne-connectivity'
readme = {content-type = "text/x-rst", file = 'README.rst'}
requires-python = '>=3.10'
[project.optional-dependencies]
all = [
'mne-connectivity[build]',
'mne-connectivity[doc]',
'mne-connectivity[gui]',
'mne-connectivity[style]',
'mne-connectivity[test]',
'PyQt6',
]
build = [
'build',
'twine',
]
doc = [
'memory-profiler',
'mne-bids',
'mne-connectivity[gui]',
'nibabel',
'nilearn',
'numpydoc',
'pooch',
'pydata-sphinx-theme==0.14.1',
'PyQt6',
'sphinx!=8.1.0',
'sphinx-copybutton',
'sphinx-design',
'sphinx-gallery>=0.18.0',
'sphinx-issues',
'sphinx_autodoc_typehints',
'sphinxcontrib-bibtex',
]
full = [
'mne-connectivity[all]',
]
gui = [
'h5netcdf',
'matplotlib',
'mne-qt-browser>=0.6.0',
'pyvista',
'pyvistaqt',
'qtpy',
'sip',
'vtk',
]
style = [
"pre-commit",
'codespell',
'isort',
'pydocstyle',
'pydocstyle[toml]',
'rstcheck',
'ruff',
'toml-sort',
'yamllint',
]
test = [
"pytest-timeout",
'joblib',
'mne-bids',
'mne-connectivity[gui]',
'pandas',
'pymatreader',
'pytest',
'pytest-cov',
'statsmodels',
]
[project.urls]
documentation = 'https://mne.tools/mne-connectivity'
source = 'https://github.com/mne-tools/mne-connectivity'
tracker = 'https://github.com/mne-tools/mne-connectivity/issues'
[tool.codespell]
builtin = "clear,rare,informal,names,usage"
ignore-words = ".codespellignore"
skip = "doc/references.bib"
[tool.coverage.report]
exclude_lines = [
'if __name__ == .__main__.:',
'if TYPE_CHECKING:',
'pragma: no cover',
]
precision = 2
[tool.coverage.run]
branch = true
cover_pylib = false
omit = [
'**/__init__.py',
'**/mne_connectivity/conftest.py',
'**/tests/**',
]
[tool.isort]
extend_skip_glob = [
'doc/*',
'examples/*',
'setup.py',
]
line_length = 88
multi_line_output = 3
py_version = 39
[tool.mypy]
ignore_missing_imports = true
no_site_packages = true
[tool.pydocstyle]
add_ignore = 'D100,D104,D107'
convention = 'numpy'
ignore-decorators = '(copy_doc|property|.*setter|.*getter|pyqtSlot|Slot)'
match = '^(?!setup|__init__|test_).*\.py'
match-dir = '^mne_connectivity.*'
[tool.pytest.ini_options]
addopts = '--durations 20 --junit-xml=junit-results.xml -v -rfEXs --tb=short --color=yes'
junit_family = 'xunit2'
minversion = '6.0'
[tool.rstcheck]
ignore_directives = [
"autoclass",
"autofunction",
"automodule",
"autosummary",
"bibliography",
"cssclass",
"currentmodule",
"dropdown",
"footbibliography",
"glossary",
"graphviz",
"grid",
"highlight",
"minigallery",
"rst-class",
"tab-set",
"tabularcolumns",
"toctree",
]
ignore_messages = "^.*(Unknown target name|Undefined substitution referenced)[^`]*$"
ignore_roles = [
"attr",
"class",
"doc",
"eq",
"exc",
"file",
"footcite",
"footcite:t",
"func",
"gh",
"kbd",
"meth",
"mod",
"newcontrib",
"pr",
"py:mod",
"ref",
"samp",
"term",
]
report_level = "WARNING"
[tool.ruff]
extend-exclude = [
'benchmarks',
'doc',
'setup.py',
]
line-length = 88
[tool.ruff.lint]
ignore = [
"D100", # Missing docstring in public module
"D104", # Missing docstring in public package
"D413", # Missing blank line after last section
"UP008", # TODO: Use `super()`
"UP031", # TODO: Use format specifiers
]
select = ["A", "B006", "D", "E", "F", "I", "UP", "W"]
[tool.ruff.lint.per-file-ignores]
'__init__.py' = ['F401']
'examples/*.py' = ["D205"]
'mne_connectivity/base.py' = ["D101", "D102", "D105"]
[tool.ruff.lint.pydocstyle]
convention = "numpy"
ignore-decorators = [
"mne.utils.copy_doc",
"mne.utils.copy_function_doc_to_method_doc",
"mne.utils.deprecated",
"property",
"setter",
]
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
exclude = ['mne_connectivity*tests']
include = ['mne_connectivity*']
[tool.setuptools_scm]
version_scheme = "release-branch-semver"
[tool.tomlsort]
all = true
ignore_case = true
trailing_comma_inline_array = true