forked from qtile/qtile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
159 lines (148 loc) · 3.52 KB
/
setup.cfg
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
[metadata]
name = qtile
url = https://qtile.org
license = MIT
description = A pure-Python tiling window manager.
long_description = file: README.rst
long_description_content_type = text/x-rst
author = Aldo Cortesi
author_email = aldo@nullcube.com
maintainer = Sean Vig
maintainer_email = sean.v.775@gmail.com
keywords =
qtile
tiling
window
manager
classifiers =
Development Status :: 3 - Alpha
Intended Audience :: End Users/Desktop
License :: OSI Approved :: MIT License
Operating System :: POSIX :: BSD :: FreeBSD
Operating System :: POSIX :: Linux
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
Topic :: Desktop Environment :: Window Managers
project_urls =
Documentation = https://docs.qtile.org/
Code = https://github.com/qtile/qtile/
Issue tracker = https://github.com/qtile/qtile/issues
Contributing = https://docs.qtile.org/en/latest/manual/contributing.html
[options]
packages = find:
python_requires >= 3.9
setup_requires =
cffi >= 1.1.0
cairocffi[xcb] >= 0.9.0
setuptools >= 40.5.0
setuptools_scm >= 3.2.0
install_requires =
cffi >= 1.1.0
cairocffi[xcb] >= 0.9.0
xcffib >= 0.10.1
tests_require =
flake8
pep8-naming
psutil
coverage
[options.entry_points]
console_scripts =
qtile = libqtile.scripts.main:main
[options.extras_require]
doc =
sphinx
sphinx_rtd_theme
sphinxcontrib-seqdiag
numpydoc
lint =
flake8
pep8-naming
coverage
test =
pytest >= 6.2.1
bowler
dbus-next
PyGObject
ipython =
ipykernel
jupyter_console
wayland =
pywayland>=0.4.14
pywlroots>=0.15.24,<0.16.0
xkbcommon>=0.3
[options.package_data]
libqtile.resources =
battery-icons/*.png
layout-icons/*.png
[options.packages.find]
exclude =
test*
[build_sphinx]
source-dir = docs
build-dir = docs/_build
[flake8]
exclude = libqtile/_ffi*.py,libqtile/backend/x11/_ffi*.py
max-line-length = 98
ban-relative-imports = true
ignore = E203,W503,E704,E123,E226,E121,E24,E126,W504,N818,E501
enable-extensions = G
[tool:pytest]
python_files = test_*.py
testpaths = test
addopts = --verbose
[check-manifest]
ignore =
stubs**
[tool:isort]
line_length = 98
multi_line_output = 3
force_single_line = false
balanced_wrapping = true
default_section = THIRDPARTY
known_first_party = libqtile,test
include_trailing_comma = true
profile = black
[mypy]
mypy_path = stubs
python_version = 3.10
warn_unused_configs = True
warn_unused_ignores = True
warn_unreachable = True
no_implicit_optional = True
disallow_untyped_defs = False
[mypy-_cffi_backend]
ignore_missing_imports = True
[mypy-cairocffi._generated.ffi]
ignore_missing_imports = True
[mypy-cairocffi.pixbuf]
ignore_missing_imports = True
[mypy-libqtile._ffi_pango]
ignore_missing_imports = True
[mypy-libqtile.backend.x11._ffi_xcursors]
ignore_missing_imports = True
[mypy-xcffib._ffi]
ignore_missing_imports = True
[mypy-pytest]
ignore_missing_imports = True
[mypy-libqtile.widget._pulse_audio]
ignore_missing_imports = True
[mypy-xkbcommon.*]
ignore_missing_imports = True
[mypy-pywayland.*]
ignore_missing_imports = True
[mypy-wlroots.*]
ignore_missing_imports = True
[mypy-libqtile.backend.wayland.*]
disallow_untyped_defs = True
[mypy-libqtile.core.*]
disallow_untyped_defs = True
[mypy-libqtile.config]
disallow_untyped_defs = True
[mypy-libqtile.log_utils]
disallow_untyped_defs = True
[mypy-libqtile.utils]
disallow_untyped_defs = True