-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (53 loc) · 1.2 KB
/
Copy pathpyproject.toml
File metadata and controls
62 lines (53 loc) · 1.2 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
[project]
name = "rundesk"
version = "0.1.1"
description = "RunDesk — Launcher de comandos por texto para Windows 10/11"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"PySide6>=6.8",
"keyboard>=0.13",
"rapidfuzz>=3.0",
"pywin32>=306",
"screeninfo>=0.8",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["app"]
[project.scripts]
rundesk = "app.main:main"
[dependency-groups]
dev = [
"pyinstaller>=6.19.0",
"pytest>=8.0",
"ruff>=0.11",
]
[tool.ruff]
target-version = "py313"
line-length = 100
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"UP", # pyupgrade
"B", # flake8-bugbear
"SIM", # flake8-simplify
"RUF", # ruff-specific
]
ignore = [
"E501", # line too long (formatter handles this)
"RUF001", # ambiguous unicode (emojis in sidebar)
"RUF003", # ambiguous unicode comment
]
[tool.ruff.lint.isort]
known-first-party = ["app"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]