]> git.proxmox.com Git - mirror_qemu.git/blame - python/setup.cfg
python: update pylint configuration
[mirror_qemu.git] / python / setup.cfg
CommitLineData
ea1213b7
JS
1[metadata]
2name = qemu
3afc3290 3version = file:VERSION
ea1213b7
JS
4maintainer = QEMU Developer Team
5maintainer_email = qemu-devel@nongnu.org
6url = https://www.qemu.org/
7download_url = https://www.qemu.org/download/
8description = QEMU Python Build, Debug and SDK tooling.
9long_description = file:PACKAGE.rst
10long_description_content_type = text/x-rst
11classifiers =
12 Development Status :: 3 - Alpha
13 License :: OSI Approved :: GNU General Public License v2 (GPLv2)
14 Natural Language :: English
15 Operating System :: OS Independent
16 Programming Language :: Python :: 3 :: Only
3c8de38c
JS
17 Programming Language :: Python :: 3.6
18 Programming Language :: Python :: 3.7
19 Programming Language :: Python :: 3.8
20 Programming Language :: Python :: 3.9
21 Programming Language :: Python :: 3.10
519f3cfc 22 Programming Language :: Python :: 3.11
7f179082 23 Typing :: Typed
ea1213b7
JS
24
25[options]
26python_requires = >= 3.6
27packages =
37094b6d 28 qemu.qmp
ea1213b7
JS
29 qemu.machine
30 qemu.utils
ef42440d 31
7f179082
JS
32[options.package_data]
33* = py.typed
34
dbe75f55 35[options.extras_require]
6832189f 36# Remember to update tests/minreqs.txt if changing anything below:
dbe75f55 37devel =
4320f717 38 avocado-framework >= 90.0
dbe75f55 39 flake8 >= 3.6.0
c63f3b0b 40 fusepy >= 2.0.4
dbe75f55 41 isort >= 5.1.2
74a1505d 42 mypy >= 0.780
dbe75f55 43 pylint >= 2.8.0
3c8de38c 44 tox >= 3.18.0
974e2f47
NB
45 urwid >= 2.1.2
46 urwid-readline >= 0.13
f37c34d6 47 Pygments >= 2.9.0
dbe75f55 48
c63f3b0b
JS
49# Provides qom-fuse functionality
50fuse =
51 fusepy >= 2.0.4
52
b1a9b1f7 53# QMP TUI dependencies
974e2f47
NB
54tui =
55 urwid >= 2.1.2
56 urwid-readline >= 0.13
f37c34d6 57 Pygments >= 2.9.0
974e2f47 58
7c4c595f
JS
59[options.entry_points]
60console_scripts =
0347c4c4
JS
61 qom = qemu.utils.qom:main
62 qom-set = qemu.utils.qom:QOMSet.entry_point
63 qom-get = qemu.utils.qom:QOMGet.entry_point
64 qom-list = qemu.utils.qom:QOMList.entry_point
65 qom-tree = qemu.utils.qom:QOMTree.entry_point
66 qom-fuse = qemu.utils.qom_fuse:QOMFuse.entry_point [fuse]
67 qemu-ga-client = qemu.utils.qemu_ga_client:main
37094b6d
JS
68 qmp-shell = qemu.qmp.qmp_shell:main
69 qmp-shell-wrap = qemu.qmp.qmp_shell:main_wrap
b1a9b1f7 70 qmp-tui = qemu.qmp.qmp_tui:main [tui]
7c4c595f 71
81f8c446 72[flake8]
745d58f7
JS
73# Prefer pylint's bare-except checks to flake8's
74extend-ignore = E722
21d0b866 75exclude = __pycache__,
81f8c446 76
e941c844
JS
77[mypy]
78strict = True
79python_version = 3.6
80warn_unused_configs = True
0542a4c9 81namespace_packages = True
e7874a50 82warn_unused_ignores = False
e941c844 83
0347c4c4 84[mypy-qemu.utils.qom_fuse]
30ec845c
JS
85# fusepy has no type stubs:
86allow_subclassing_any = True
87
b1a9b1f7 88[mypy-qemu.qmp.qmp_tui]
aeb6b48a
NB
89# urwid and urwid_readline have no type stubs:
90allow_subclassing_any = True
91
92# The following missing import directives are because these libraries do not
93# provide type stubs. Allow them on an as-needed basis for mypy.
30ec845c 94[mypy-fuse]
aeb6b48a
NB
95ignore_missing_imports = True
96
97[mypy-urwid]
98ignore_missing_imports = True
99
100[mypy-urwid_readline]
30ec845c
JS
101ignore_missing_imports = True
102
f37c34d6
NB
103[mypy-pygments]
104ignore_missing_imports = True
105
ef42440d
JS
106[pylint.messages control]
107# Disable the message, report, category or checker with the given id(s). You
108# can either give multiple identifiers separated by comma (,) or put this
109# option multiple times (only on the command line, not in the configuration
110# file where it should appear only once). You can also use "--disable=all" to
111# disable everything first and then reenable specific checks. For example, if
112# you want to run only the similarities checker, you can use "--disable=all
113# --enable=similarities". If you want to run only the classes checker, but have
114# no Warning level messages displayed, use "--disable=all --enable=classes
115# --disable=W".
eb8033f6 116disable=consider-using-f-string,
5c66d7d8
DB
117 consider-using-with,
118 too-many-arguments,
29a8ea9b 119 too-many-function-args, # mypy handles this with less false positives.
5c66d7d8 120 too-many-instance-attributes,
4cd17f37 121 no-member, # mypy also handles this better.
ef42440d
JS
122
123[pylint.basic]
124# Good variable names which should always be accepted, separated by a comma.
125good-names=i,
126 j,
127 k,
128 ex,
129 Run,
d229f1c8
JS
130 _, # By convention: Unused variable
131 fh, # fh = open(...)
132 fd, # fd = os.open(...)
133 c, # for c in string: ...
35b9a85a 134 T, # for TypeVars. See pylint#3401
6c2537d3 135 SocketAddrT, # Not sure why this is invalid.
ef42440d
JS
136
137[pylint.similarities]
138# Ignore imports when computing similarities.
139ignore-imports=yes
5690b437 140ignore-signatures=yes
158ac451 141
22305c2a
JS
142# Minimum lines number of a similarity.
143# TODO: Remove after we opt in to Pylint 2.8.3. See commit msg.
144min-similarity-lines=6
145
146
158ac451
JS
147[isort]
148force_grid_wrap=4
149force_sort_within_sections=True
150include_trailing_comma=True
151line_length=72
152lines_after_imports=2
153multi_line_output=3
3c8de38c
JS
154
155# tox (https://tox.readthedocs.io/) is a tool for running tests in
156# multiple virtualenvs. This configuration file will run the test suite
157# on all supported python versions. To use it, "pip install tox" and
158# then run "tox" from this directory. You will need all of these versions
159# of python available on your system to run this test.
160
161[tox:tox]
519f3cfc 162envlist = py36, py37, py38, py39, py310, py311
6f651a6d 163skip_missing_interpreters = true
3c8de38c
JS
164
165[testenv]
166allowlist_externals = make
c63f3b0b
JS
167deps =
168 .[devel]
169 .[fuse] # Workaround to trigger tox venv rebuild
974e2f47 170 .[tui] # Workaround to trigger tox venv rebuild
3c8de38c
JS
171commands =
172 make check
a4ffaecd
JS
173
174# Coverage.py [https://coverage.readthedocs.io/en/latest/] is a tool for
175# measuring code coverage of Python programs. It monitors your program,
176# noting which parts of the code have been executed, then analyzes the
177# source to identify code that could have been executed but was not.
178
179[coverage:run]
180concurrency = multiprocessing
181source = qemu/
182parallel = true