-
-
Notifications
You must be signed in to change notification settings - Fork 170
Expand file tree
/
Copy pathpyproject.toml
More file actions
103 lines (95 loc) · 2.54 KB
/
pyproject.toml
File metadata and controls
103 lines (95 loc) · 2.54 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
94
95
96
97
98
99
100
101
102
103
[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 = "MIT"
readme = "README.md"
requires-python = ">= 3.14"
dependencies = [
"pyqt6==6.10.2",
"pydantic==2.13.2",
"humanize==4.15.0",
"pywin32==311",
"pyyaml==6.0.3",
"holidays==0.94",
"watchdog==6.0.0",
"pycaw==20251023",
"pillow==12.2.0",
"qasync==0.28.0",
"github-copilot-sdk==0.2.2",
"openai==2.32.0",
"pyvda @ git+https://github.com/amnweb/pyvda@master",
"python-dotenv==1.2.2",
"tzdata==2026.1",
"winrt.windows.foundation==3.2.1",
"winrt.windows.foundation.collections==3.2.1",
"winrt.windows.data.xml.dom==3.2.1",
"winrt.windows.media==3.2.1",
"winrt.windows.media.control==3.2.1",
"winrt.windows.management.deployment==3.2.1",
"winrt.windows.applicationmodel==3.2.1",
"winrt.windows.applicationmodel.core==3.2.1",
"winrt.windows.applicationmodel.datatransfer==3.2.1",
"winrt.windows.networking==3.2.1",
"winrt.windows.networking.connectivity==3.2.1",
"winrt.windows.storage==3.2.1",
"winrt.windows.storage.streams==3.2.1",
"winrt.windows.ui.notifications==3.2.1",
"winrt.windows.ui.notifications.management==3.2.1",
"winrt.windows.devices.wifi==3.2.1",
"winrt.windows.security.credentials==3.2.1",
]
[project.urls]
Homepage = "https://github.com/amnweb/yasb"
Documentation = "https://github.com/amnweb/yasb/wiki"
Repository = "https://github.com/amnweb/yasb"
Issues = "https://github.com/amnweb/yasb/issues"
Changelog = "https://github.com/amnweb/yasb/releases/latest"
[project.optional-dependencies]
dev = [
"pre-commit",
"ruff>=0.15.0",
"pyqt6-stubs",
"types-pillow",
"types-pywin32",
]
packaging = [
"cx-freeze==8.6.4"
]
[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 = "py314"
extend-exclude = [
"__pycache__",
".github",
".vscode",
"build",
"docs",
"demo"
]
[tool.ruff.lint]
ignore = [
"F405",
"F403",
"E741",
]
select = ["I", "F", "UP", "G004"]
fixable = ["ALL"]
[tool.ruff.format]
docstring-code-format = true
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false