-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (51 loc) · 1.39 KB
/
pyproject.toml
File metadata and controls
60 lines (51 loc) · 1.39 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
[build-system]
requires = ["setuptools>=69"]
build-backend = "setuptools.build_meta"
[project]
name = "win-search-aliases"
version = "0.1.1"
description = "Add managed app-search aliases to the internal Windows Search AppsIndex database (Windows 11 only)."
readme = "README.md"
requires-python = ">=3.11"
license = { text = "MIT" }
authors = [{ name = "mbv06" }]
keywords = ["windows", "search", "start-menu", "aliases"]
classifiers = [
"Operating System :: Microsoft :: Windows :: Windows 11",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
]
[project.optional-dependencies]
dev = [
"pytest>=9.0.3",
"ruff>=0.15.14",
"mypy>=1.15.0",
]
[project.scripts]
win-search-aliases = "win_search_aliases.cli:main"
win-search-aliases-ui = "win_search_aliases.ui.gui:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
win_search_aliases = ["assets/*.ico", "assets/*.png", "config/*.toml"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]
[tool.ruff]
line-length = 120
target-version = "py311"
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"B", # flake8-bugbear
"C4", # flake8-comprehensions
]
ignore = [
"E501", # line too long, handled by formatter
]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"