-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (42 loc) · 1.03 KB
/
Copy pathpyproject.toml
File metadata and controls
48 lines (42 loc) · 1.03 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 = "iets-speed-control"
version = "0"
description = "Fan Speed Control for 12V IETS Laptop Cooler Stands"
readme = "README.md"
requires-python = "==3.14.*"
dependencies = [
"aioserial",
"pyserial",
"wmi",
"pystray",
"customtkinter",
"Pillow",
"ruamel-yaml",
]
[dependency-groups]
dev = [
"pre-commit-uv",
"pyinstaller",
"pytest",
"pytest-asyncio",
"pytest-xdist>=3.8.0",
"ruff",
"rust-just",
]
[tool.uv]
package = true
[tool.ruff]
line-length = 120
[project.scripts]
iets-speed-control = "iets_speed_control.entrypoints.cli:cli"
[project.gui-scripts]
iets-speed-control-gui = "iets_speed_control.entrypoints.gui:gui"
[tool.pytest.ini_options]
minversion = "8.3.5"
addopts = "-ra -q -m 'not e2e'"
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "session"
markers = [
"e2e: marks tests as end-to-end tests that require real network access (deselect with '-m \"not e2e\"')",
"gui: needs the shared Tk root; applied automatically, and kept out of parallel runs",
]