-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (56 loc) · 1.62 KB
/
pyproject.toml
File metadata and controls
62 lines (56 loc) · 1.62 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "streamdock"
version = "1.0.0"
description = "Linux Stream Dock 293v3 controller with YAML configuration, context-aware layouts, lock monitoring, and automation"
authors = [
{name = "Zrubi", email = "zrubavel@gmail.com"}
]
readme = "README.md"
license = {text = "MIT"}
keywords = ["streamdock", "stream-dock", "macro-pad", "linux", "kde", "automation", "mirabox"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: System :: Hardware",
"Topic :: Desktop Environment",
]
dependencies = [
"pillow>=10.0.0",
"pyyaml>=6.0",
"cairosvg>=2.7.0",
"pyudev>=0.24.0",
"PyQt6>=6.4.0",
]
requires-python = ">=3.10.0"
[project.optional-dependencies]
lock-monitor = [
"dbus-python>=1.3.0",
"PyGObject>=3.44.0",
]
[tool.setuptools]
packages = ["StreamDock"]
package-dir = {"" = "src"}
[tool.setuptools.package-data]
StreamDock = ["*.yml", "*.yaml"]
[tool.pytest.ini_options]
markers = [
"regression: marks tests as regression tests",
"issue: marks tests linked to specific issues",
"stability: marks tests for stability and concurrency"
]
testpaths = ["tests"]
pythonpath = ["src"]
[tool.isort]
profile = "black"
line_length = 120
src_paths = ["src"]
known_first_party = ["StreamDock"]