-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (42 loc) · 1.48 KB
/
Copy pathpyproject.toml
File metadata and controls
48 lines (42 loc) · 1.48 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
[build-system]
requires = ["setuptools>=77"]
build-backend = "setuptools.build_meta"
[project]
name = "taskbargap"
version = "0.1.1"
description = "Find the empty gap in the Windows taskbar and place a top-most window in it, across monitors and DPI."
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
authors = [{ name = "paone9" }]
keywords = ["windows", "taskbar", "win32", "topmost", "dpi", "widget", "taskbar-gap", "shell"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Win32 (MS Windows)",
"Intended Audience :: Developers",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries",
"Topic :: Desktop Environment",
]
dependencies = []
# Dev + CI tools, pinned to the tested versions. One dependency source for the
# whole project: `pip install .[dev]`, no separate requirements files.
[project.optional-dependencies]
dev = [
"ruff==0.16.1",
"bandit==1.9.4",
"pytest==9.1.1",
]
[project.urls]
Homepage = "https://github.com/paone9/taskbargap"
Issues = "https://github.com/paone9/taskbargap/issues"
Changelog = "https://github.com/paone9/taskbargap/blob/main/CHANGELOG.md"
[tool.setuptools.packages.find]
where = ["src"]
# PEP 561: the package is fully annotated, so say so - without the marker every
# consumer's type checker treats the whole API as untyped.
[tool.setuptools.package-data]
taskbargap = ["py.typed"]
[tool.pytest.ini_options]
testpaths = ["tests"]