-
Notifications
You must be signed in to change notification settings - Fork 87
Expand file tree
/
Copy pathpyproject.toml
More file actions
90 lines (77 loc) · 2.33 KB
/
Copy pathpyproject.toml
File metadata and controls
90 lines (77 loc) · 2.33 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
[project]
name = "QuickTile"
authors = [{name = 'Stephan Sokolow (deitarion/SSokolow)'}]
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: X11 Applications :: GTK',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)',
'Natural Language :: English',
'Operating System :: POSIX',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Desktop Environment :: Window Managers',
'Topic :: Utilities',
]
dependencies = [
"dbus-python", # TODO: Switch to PyGI-based D-Bus support
"PyGObject",
"python-xlib",
]
description='Add keyboard-driven window-tiling to any X11 window manager (inspired by WinSplit Revolution)'
dynamic = ["version"]
keywords=['x11', 'desktop', 'window', 'tiling', 'wm', 'utility', 'addon',
'extension', 'tile', 'layout', 'positioning', 'helper', 'keyboard',
'hotkey', 'hotkeys', 'shortcut', 'shortcuts', 'tool']
readme = "README.rst"
requires-python = ">= 3.12"
[project.scripts]
quicktile = "quicktile.__main__:main"
[project.urls]
homepage = "http://ssokolow.com/quicktile/"
repository = "https://github.com/ssokolow/quicktile"
issues = "https://github.com/ssokolow/quicktile/issues"
changelog = "https://github.com/ssokolow/quicktile/blob/master/ChangeLog"
[build-system]
requires = ["setuptools >= 68.1.2"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages=['quicktile']
include-package-data = true
[tool.setuptools.dynamic]
version = {file = "quicktile/VERSION"}
[tool.setuptools.package-data]
quicktile = ["*.desktop"]
[tool.pytest.ini_options]
addopts = [
"--doctest-modules",
"--cov-report=lcov",
"--cov=.",
]
[tool.coverage.run]
branch = true
[tool.coverage.report]
omit = [
"*/python?.?/*",
"*/python?.??/*",
"*/lib-python/?.?/*.py",
"*/lib_pypy/_*.py",
"*/site-packages/*",
"*/dist-packages/*",
"*/pyshared/*",
"*/gi/*",
"*/Xlib/*",
]
[tool.ruff.lint]
ignore = ["N802", "E401", "E402"]
unfixable = ["N802", "E401", "E402"]
[tool.mypy]
check_untyped_defs = true
ignore_missing_imports = true
strict_optional = true
warn_unused_ignores = false
warn_return_any = true
warn_unreachable = true
[[tool.mypy.overrides]]
module = ["gi"]
ignore_missing_imports = true
# TODO: When did follow_untyped_imports = true become "recognized"