-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (57 loc) · 1.32 KB
/
pyproject.toml
File metadata and controls
67 lines (57 loc) · 1.32 KB
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
[project]
name = "mobi-view"
version = "0.2.1"
description = "A real-time biosignal visualization tool for Lab Streaming Layer (LSL) streams."
authors = [
{name = "Iktae Kim", email = "iktae.kim@childmind.org"},
{name = "Adam Santorelli", email = "adam.santorelli@childmind.org"}
]
license = "LGPL-2.1-only"
readme = "README.md"
requires-python = ">=3.10,<3.13"
dependencies = [
"pyqtgraph>=0.13.7",
"PyQt6>=6.9.0",
"pylsl>=1.17.6",
"numpy>=1.26.4,<2.3.0"
]
[project.scripts]
mobi-view = "MoBI_View.main:main"
[dependency-groups]
dev = [
"pytest>=8.3.5",
"mypy>=1.15.0",
"pre-commit>=4.2.0",
"pytest-cov>=6.1.1",
"ruff>=0.11.7",
"pytest-mock>=3.10.0",
"deptry>=0.23.0"
]
docs = ["pdoc>=15.0.3"]
[tool.pytest.ini_options]
pythonpath = ["src"]
testpaths = ["tests"]
[tool.mypy]
ignore_missing_imports = true
[tool.ruff]
line-length = 88
indent-width = 4
src = ["src"]
target-version = "py312"
[tool.ruff.lint]
select = ["ANN", "D", "E", "F", "I"]
ignore = [
"ANN101", # self should not be annotated.
"ANN102" # cls should not be annotated.
]
fixable = ["ALL"]
unfixable = []
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.ruff.lint.per-file-ignores]
"tests/**/*.py" = []
[tool.hatch.build.targets.wheel]
packages = ["src/MoBI_View"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"