-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (52 loc) · 1.59 KB
/
pyproject.toml
File metadata and controls
58 lines (52 loc) · 1.59 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
[project]
name = "phologtolabstreaminglayer"
version = "0.3.7"
description = "a complete but minimal python app that allows the user to take timestampped notes to labstreaminglayer with EventBoard functionality"
readme = "README.md"
requires-python = ">=3.10,<3.11"
dependencies = [
"attrs>=25.3.0",
"comtypes>=1.4.13; platform_system == 'Windows'",
"cython>=3.1.4",
"dtw-python",
"keyboard>=0.13.5",
"lab-recorder-python",
"matplotlib>=3.9.4",
"mne>=1.8.0",
"mne-lsl>=1.6.1",
"pillow>=11.3.0",
"psutil>=7.1.1",
"pyinstaller>=6.14.2",
"pylsl>=1.17.6",
"pystray>=0.19.5",
"pytz>=2025.2",
"pywin32>=306; platform_system == 'Windows'",
"pyxdf>=1.17.0",
"setuptools>=80.9.0",
"sounddevice>=0.5.3",
"soundfile>=0.13.1",
"torch>=2.7.1; platform_system == 'Darwin' and platform_machine == 'x86_64'",
"torch; platform_system != 'Darwin' or platform_machine != 'x86_64'",
"wheel>=0.45.1",
"whisper-timestamped",
"phopylslhelper>=0.1.3",
"influxdb-client>=1.49.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/phologtolabstreaminglayer"]
[tool.uv]
dev-dependencies = [
"pytest>=7.0.0",
"black>=23.0.0",
"isort>=5.12.0",
"flake8>=6.0.0",
]
[project.scripts]
logger_app = "logger_app:console_main"
[tool.uv.sources]
lab-recorder-python = { path = "../lab-recorder-python", editable = true }
whisper-timestamped = { path = "../whisper-timestamped", editable = true }
phopylslhelper = { path = "../PhoPyLSLhelper", editable = true }