-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
48 lines (41 loc) · 1.09 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
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pylsltools"
version = "0.1.0"
authors = [
{name="Jamie Forth", email="[email protected]"},
]
description = "Tools for working with LSL data streams."
readme = "README.md"
requires-python = "==3.11.*"
license = {text = "AGPL-3.0-or-later"}
dependencies = [
"pylsl",
"aioconsole>=0.8.1",
]
[project.optional-dependencies]
xdf = [
"pyxdftools @ git+https://github.com/jamieforth/pyxdf-tools.git",
]
osc = [
"python-osc>=1.9.0",
]
[project.urls]
"Homepage" = "https://github.com/jamieforth/pylsl-tools"
"Bug Tracker" = "https://github.com/jamieforth/pylsl-tools/issues"
[project.scripts]
lsl-control = "pylsltools.control:main"
lsl-monitor = "pylsltools.monitor:main"
lsl-playback = "pylsltools.playback:main"
lsl-relay = "pylsltools.relay:main"
lsl-simulate = "pylsltools.simulate:main"
lsl-ant-control = "pylsltools.ant_control:main"
lsl-osc-control = "pylsltools.osc_control:main"
[tool.pdm]
distribution = true
[tool.pdm.dev-dependencies]
dev = [
"python-lsp-server[all]",
]