Lines Matching +full:language +full:- +full:id

5 maintainer_email = qemu-devel@nongnu.org
10 long_description_content_type = text/x-rst
12 Development Status :: 3 - Alpha
14 Natural Language :: English
16 Programming Language :: Python :: 3 :: Only
17 Programming Language :: Python :: 3.8
18 Programming Language :: Python :: 3.9
19 Programming Language :: Python :: 3.10
20 Programming Language :: Python :: 3.11
21 Programming Language :: Python :: 3.12
22 Programming Language :: Python :: 3.13
38 avocado-framework >= 90.0
48 urwid-readline >= 0.13
51 # Provides qom-fuse functionality
58 urwid-readline >= 0.13
64 qom-set = qemu.utils.qom:QOMSet.entry_point
65 qom-get = qemu.utils.qom:QOMGet.entry_point
66 qom-list = qemu.utils.qom:QOMList.entry_point
67 qom-tree = qemu.utils.qom:QOMTree.entry_point
68 qom-fuse = qemu.utils.qom_fuse:QOMFuse.entry_point [fuse]
69 qemu-ga-client = qemu.utils.qemu_ga_client:main
70 qmp-shell = qemu.qmp.qmp_shell:main
71 qmp-shell-wrap = qemu.qmp.qmp_shell:main_wrap
72 qmp-tui = qemu.qmp.qmp_tui:main [tui]
75 # Prefer pylint's bare-except checks to flake8's
76 extend-ignore = E722
86 [mypy-qemu.utils.qom_fuse]
90 [mypy-qemu.qmp.qmp_tui]
95 # provide type stubs. Allow them on an as-needed basis for mypy.
96 [mypy-fuse]
99 [mypy-tomli]
102 [mypy-tomllib]
105 [mypy-urwid]
108 [mypy-urwid_readline]
111 [mypy-pygments]
114 [mypy-distlib]
117 [mypy-distlib.scripts]
120 [mypy-distlib.version]
123 [mypy-pip._vendor.distlib]
126 [mypy-pip._vendor.distlib.scripts]
129 [mypy-pip._vendor.distlib.version]
133 # Disable the message, report, category or checker with the given id(s). You
136 # file where it should appear only once). You can also use "--disable=all" to
138 # you want to run only the similarities checker, you can use "--disable=all
139 # --enable=similarities". If you want to run only the classes checker, but have
140 # no Warning level messages displayed, use "--disable=all --enable=classes
141 # --disable=W".
142 disable=consider-using-f-string,
143 consider-using-with,
144 too-many-arguments,
145 too-many-positional-arguments,
146 too-many-function-args, # mypy handles this with less false positives.
147 too-many-instance-attributes,
148 no-member, # mypy also handles this better.
152 good-names=i,
166 ignore-imports=yes
167 ignore-signatures=yes
171 min-similarity-lines=6