-
Notifications
You must be signed in to change notification settings - Fork 69
/
pyproject.toml
68 lines (61 loc) · 1.71 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "mnelab"
description = "A graphical user interface for MNE"
license = {text = "BSD 3-Clause"}
authors = [
{name = "Clemens Brunner", email = "[email protected]"},
]
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
keywords = ["EEG", "MEG", "MNE", "GUI", "electrophysiology"]
dependencies = [
"mne >= 1.7.0",
"PySide6 >= 6.7.1",
"edfio >= 0.4.2",
"matplotlib >= 3.8.0",
"numpy >= 2.0.0",
"scipy >= 1.14.1",
"pybv >= 0.7.4",
"pyxdf >= 1.16.4",
"pyobjc-framework-Cocoa >= 10.0; platform_system=='Darwin'",
]
dynamic = ["version"]
[project.optional-dependencies]
full = [
"mne-qt-browser >= 0.6.2", # alternative browser backend
"python-picard >= 0.8.0", # picard
"scikit-learn >= 1.3.0", # fastica
]
dev = [
"mnelab[full]",
"pytest",
"pytest-qt",
"pytest-xvfb",
"ruff",
]
[project.gui-scripts]
mnelab = "mnelab:main"
[project.urls]
homepage = "https://github.com/cbrnr/mnelab"
documentation = "https://mnelab.readthedocs.io/en/latest/"
repository = "https://github.com/cbrnr/mnelab"
changelog = "https://github.com/cbrnr/mnelab/blob/main/CHANGELOG.md"
[tool.hatch.version]
path = "src/mnelab/__init__.py"
[tool.ruff.lint]
select = ["E", "F", "I", "W", "UP"]
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"]
"mainwindow.py" = ["F405"]