-
Notifications
You must be signed in to change notification settings - Fork 11
/
pyproject.toml
61 lines (53 loc) · 1.69 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "mne-rsa"
authors = [
{name = "Marijn van Vliet", email = "[email protected]"},
]
description = "Code for performing Representational Similarity Analysis on MNE-Python data structures."
requires-python = ">=3.7"
keywords = ["rsa", "meg", "eeg", "neuroimaging", "mne-python"]
license = {text = "BSD-3-Clause"}
classifiers = [
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved",
"Programming Language :: Python",
"Topic :: Software Development",
"Topic :: Scientific/Engineering",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS",
]
dependencies = ["mne"]
dynamic = ["version"]
[project.urls]
"Homepage" = "https://users.aalto.fi/~vanvlm1/mne-rsa"
"Bug Tracker" = "https://github.com/wmvanvliet/mne-rsa/issues/"
"Source Code" = "https://github.com/wmvanvliet/mne-rsa"
[tool.setuptools]
packages = ["mne_rsa"]
[tool.setuptools.dynamic]
version = {attr = "mne_rsa.__version__"}
readme = {file = ["README.rst"]}
[tool.pytest.ini_options]
addopts = """
--showlocals --durations=20 --doctest-modules -ra --cov-report=term-missing
--doctest-ignore-import-errors --junit-xml=junit-results.xml
--ignore=doc --ignore=examples --ignore=tutorials --cov=mne_rsa
"""
junit_family = "xunit2"
[tool.ruff]
exclude = ["__init__.py"]
line-length = 88
indent-width = 4
[tool.ruff.lint]
select = ["E", "F", "D", "W"]
ignore = ["D107", "D203", "D213"]
per-file-ignores = {"examples/*.py" = ["D205", "D400", "D415", "D212"]}
#ignore = ["W503"]
[tool.ruff.format]
quote-style = "double"