forked from qtile/qtile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
126 lines (115 loc) · 2.7 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
[metadata]
name = qtile
url = http://qtile.org
license = MIT
license_file = LICENSE
description = A pure-Python tiling window manager.
long_description = file: README.rst
long_description_content_type = text/x-rst
author = Aldo Cortesi
author_email = [email protected]
maintainer = Sean Vig
maintainer_email = [email protected]
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.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
Topic :: Desktop Environment :: Window Managers
project_urls =
Documentation = http://docs.qtile.org/
Code = https://github.com/qtile/qtile/
Issue tracker = https://github.com/qtile/qtile/issues
[options]
packages = find:
python_requires >= 3.7
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.8.1
tests_require =
flake8
pep8-naming
psutil
pytest-cov
[options.entry_points]
console_scripts =
qtile = libqtile.scripts.main:main
[options.extras_require]
doc =
sphinx
sphinx_rtd_theme
sphinxcontrib-seqdiag
numpydoc
test =
flake8
pep8-naming
pytest-cov
ipython =
ipykernel
jupyter_console
[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 = 120
ban-relative-imports = true
[tool:pytest]
python_files = test_*.py
testpaths = test
addopts = --verbose
[check-manifest]
ignore =
stubs**
[tool:isort]
line_length = 80
multi_line_output = 3
force_single_line = false
balanced_wrapping = true
default_section = THIRDPARTY
known_first_party = libqtile,test
include_trailing_comma = true
[mypy]
mypy_path = stubs
python_version = 3.7
[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