-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (43 loc) · 1.13 KB
/
pyproject.toml
File metadata and controls
48 lines (43 loc) · 1.13 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
[project]
name = "linux-arctis-manager"
version = "2.3.0"
description = "A replacement for SteelSeries GG software, to manage your Arctis device on Linux!"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"dbus-next>=0.2.3",
"pulsectl>=24.12.0",
"pyside6>=6.10.1",
"pyudev>=0.24.4",
"pyusb>=1.3.1",
"ruamel-yaml>=0.19.1",
]
[project.scripts]
lam-daemon = "linux_arctis_manager.scripts.daemon:main"
lam-cli = "linux_arctis_manager.scripts.cli:main"
lam-gui = "linux_arctis_manager.scripts.gui:main"
[build-system]
requires = ["uv_build>=0.10.9,<0.11.0"]
build-backend = "uv_build"
[dependency-groups]
dev = [
"autoflake>=2.3.1",
"basedpyright>=1.39.2",
"isort>=7.0.0",
"pytest>=9.0.2",
"pytest-cov>=7.1.0",
]
[tool.coverage.run]
omit = [
"src/linux_arctis_manager/gui/*",
"src/linux_arctis_manager/dbus_service.py",
"src/linux_arctis_manager/scripts/dbus_awake.py",
]
[tool.pyright]
reportUnknownMemberType = "none"
reportMissingTypeStubs = "none"
reportExplicitAny = "none"
reportAny = "none"
reportUnknownVariableType = "none"
reportImplicitOverride = "none"
extraPaths = ["src"]