forked from amnweb/yasb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
93 lines (85 loc) · 1.92 KB
/
Copy pathpyproject.toml
File metadata and controls
93 lines (85 loc) · 1.92 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "YASB"
dynamic = ["version"]
description = "Yet Another Status Bar - A highly configurable Windows status bar written in Python."
authors = [
{ name = "AmN" },
]
license = { file = "LICENSE" }
readme = "README.md"
requires-python = "==3.12.*"
dependencies = [
"PyQt6",
"PyQt6_sip",
"cerberus",
"humanize",
"psutil",
"pytz",
"pywin32",
"PyYAML",
"tzlocal",
"holidays",
"watchdog",
"pycaw",
"pillow==11.1",
"icoextract",
"qasync",
"obs-websocket-py",
"openai",
"pyvda",
"python-dotenv",
"winrt.windows.foundation",
"winrt.windows.foundation.collections",
"winrt.windows.data.xml.dom",
"winrt.windows.media",
"winrt.windows.media.control",
"winrt.windows.networking",
"winrt.windows.networking.connectivity",
"winrt.windows.storage",
"winrt.windows.storage.streams",
"winrt.windows.ui.notifications",
"winrt.windows.ui.notifications.management",
"winrt.windows.devices.wifi",
"winrt.windows.security.credentials",
"screen_brightness_control @ git+https://github.com/amnweb/screen_brightness_control.git",
]
[project.optional-dependencies]
dev = [
"pre-commit",
"ruff",
"cx_Freeze==7.2.10"
]
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.version]
path = "src/settings.py"
pattern = "BUILD_VERSION = \"(?P<version>[^\"]+)\""
[tool.hatch.build.targets.wheel]
packages = ["src/core"]
[tool.ruff]
line-length = 120
target-version = "py312"
extend-exclude = [
"__pycache__",
".github",
".vscode",
"build",
"docs",
"demo"
]
[tool.ruff.lint]
ignore = [
"F405",
"F403",
"E741",
]
select = ["I", "F"]
fixable = ["ALL"]
[tool.ruff.format]
docstring-code-format = true
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false