-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
92 lines (84 loc) · 2.13 KB
/
pyproject.toml
File metadata and controls
92 lines (84 loc) · 2.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
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
[build-system]
requires = [
"hatchling",
]
build-backend = "hatchling.build"
[project]
name = "YASB-GUI"
dynamic = ["version"]
description = "GUI application for YASB Reborn."
authors = [
{ name = "amnweb" },
]
license = "MIT"
readme = "README.md"
requires-python = ">=3.14"
dependencies = [
"ruamel.yaml==0.19.1",
"winrt.runtime==3.2.1",
"winrt.windows.ui==3.2.1",
"winrt.windows.system==3.2.1",
"winrt.windows.foundation==3.2.1",
"winrt.windows.foundation.collections==3.2.1",
"winrt.windows.applicationmodel==3.2.1",
"winrt.windows.applicationmodel.datatransfer==3.2.1",
"winrt.windows.ui.xaml.interop==3.2.1",
"webview2.microsoft.web.webview2.core==3.2.1",
"winui3.microsoft.ui.composition.systembackdrops==3.2.1",
"winui3.microsoft.ui.xaml==3.2.1",
"winui3.microsoft.ui.xaml.controls==3.2.1",
"winui3.microsoft.ui.xaml.controls.primitives==3.2.1",
"winui3.microsoft.ui.xaml.markup==3.2.1",
"winui3.microsoft.ui.xaml.media==3.2.1",
"winui3.microsoft.ui.xaml.input==3.2.1",
"winui3.microsoft.ui.windowing==3.2.1",
"winui3.microsoft.ui.dispatching==3.2.1",
"winui3.microsoft.ui.xaml.media.imaging==3.2.1",
"winui3.microsoft.ui.xaml.media.animation==3.2.1",
"winui3.microsoft.ui.xaml.xamltypeinfo==3.2.1",
"winui3.microsoft.ui.xaml.automation.peers==3.2.1",
"winui3.microsoft.windows.applicationmodel.dynamicdependency.bootstrap==3.2.1",
]
[project.optional-dependencies]
build = [
"cx-freeze==8.6.1",
]
dev = [
"ruff>=0.15.0",
"pytest>=9.0.0",
]
[tool.hatch.build.targets.wheel]
packages = ["app"]
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.version]
path = "app/core/constants.py"
pattern = "APP_VERSION = \"(?P<version>[^\"]+)\""
[tool.ruff]
line-length = 120
target-version = "py314"
extend-exclude = [
"__pycache__",
".github",
".vscode",
"build",
"dist",
]
[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