]> git.proxmox.com Git - mirror_qemu.git/blob - python/setup.cfg
Merge remote-tracking branch 'remotes/jsnow-gitlab/tags/python-pull-request' into...
[mirror_qemu.git] / python / setup.cfg
1 [metadata]
2 name = qemu
3 version = file:VERSION
4 maintainer = QEMU Developer Team
5 maintainer_email = qemu-devel@nongnu.org
6 url = https://www.qemu.org/
7 download_url = https://www.qemu.org/download/
8 description = QEMU Python Build, Debug and SDK tooling.
9 long_description = file:PACKAGE.rst
10 long_description_content_type = text/x-rst
11 classifiers =
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
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
22 Typing :: Typed
23
24 [options]
25 python_requires = >= 3.6
26 packages =
27 qemu.qmp
28 qemu.machine
29 qemu.utils
30 qemu.aqmp
31
32 [options.package_data]
33 * = py.typed
34
35 [options.extras_require]
36 # For the devel group, When adding new dependencies or bumping the minimum
37 # version, use e.g. "pipenv install --dev pylint==3.0.0".
38 # Subsequently, edit 'Pipfile' to remove e.g. 'pylint = "==3.0.0'.
39 devel =
40 avocado-framework >= 90.0
41 flake8 >= 3.6.0
42 fusepy >= 2.0.4
43 isort >= 5.1.2
44 mypy >= 0.770
45 pylint >= 2.8.0
46 tox >= 3.18.0
47 urwid >= 2.1.2
48 urwid-readline >= 0.13
49 Pygments >= 2.9.0
50
51 # Provides qom-fuse functionality
52 fuse =
53 fusepy >= 2.0.4
54
55 # AQMP TUI dependencies
56 tui =
57 urwid >= 2.1.2
58 urwid-readline >= 0.13
59 Pygments >= 2.9.0
60
61 [options.entry_points]
62 console_scripts =
63 qom = qemu.utils.qom:main
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.aqmp.qmp_shell:main
71 aqmp-tui = qemu.aqmp.aqmp_tui:main [tui]
72
73 [flake8]
74 extend-ignore = E722 # Prefer pylint's bare-except checks to flake8's
75 exclude = __pycache__,
76
77 [mypy]
78 strict = True
79 python_version = 3.6
80 warn_unused_configs = True
81 namespace_packages = True
82
83 [mypy-qemu.utils.qom_fuse]
84 # fusepy has no type stubs:
85 allow_subclassing_any = True
86
87 [mypy-qemu.aqmp.aqmp_tui]
88 # urwid and urwid_readline have no type stubs:
89 allow_subclassing_any = True
90
91 # The following missing import directives are because these libraries do not
92 # provide type stubs. Allow them on an as-needed basis for mypy.
93 [mypy-fuse]
94 ignore_missing_imports = True
95
96 [mypy-urwid]
97 ignore_missing_imports = True
98
99 [mypy-urwid_readline]
100 ignore_missing_imports = True
101
102 [mypy-pygments]
103 ignore_missing_imports = True
104
105 [pylint.messages control]
106 # Disable the message, report, category or checker with the given id(s). You
107 # can either give multiple identifiers separated by comma (,) or put this
108 # option multiple times (only on the command line, not in the configuration
109 # file where it should appear only once). You can also use "--disable=all" to
110 # disable everything first and then reenable specific checks. For example, if
111 # you want to run only the similarities checker, you can use "--disable=all
112 # --enable=similarities". If you want to run only the classes checker, but have
113 # no Warning level messages displayed, use "--disable=all --enable=classes
114 # --disable=W".
115 disable=consider-using-f-string,
116 too-many-function-args, # mypy handles this with less false positives.
117 no-member, # mypy also handles this better.
118
119 [pylint.basic]
120 # Good variable names which should always be accepted, separated by a comma.
121 good-names=i,
122 j,
123 k,
124 ex,
125 Run,
126 _, # By convention: Unused variable
127 fh, # fh = open(...)
128 fd, # fd = os.open(...)
129 c, # for c in string: ...
130 T, # for TypeVars. See pylint#3401
131
132 [pylint.similarities]
133 # Ignore imports when computing similarities.
134 ignore-imports=yes
135 ignore-signatures=yes
136
137 # Minimum lines number of a similarity.
138 # TODO: Remove after we opt in to Pylint 2.8.3. See commit msg.
139 min-similarity-lines=6
140
141
142 [isort]
143 force_grid_wrap=4
144 force_sort_within_sections=True
145 include_trailing_comma=True
146 line_length=72
147 lines_after_imports=2
148 multi_line_output=3
149
150 # tox (https://tox.readthedocs.io/) is a tool for running tests in
151 # multiple virtualenvs. This configuration file will run the test suite
152 # on all supported python versions. To use it, "pip install tox" and
153 # then run "tox" from this directory. You will need all of these versions
154 # of python available on your system to run this test.
155
156 [tox:tox]
157 envlist = py36, py37, py38, py39, py310
158 skip_missing_interpreters = true
159
160 [testenv]
161 allowlist_externals = make
162 deps =
163 .[devel]
164 .[fuse] # Workaround to trigger tox venv rebuild
165 .[tui] # Workaround to trigger tox venv rebuild
166 setuptools < 60 # Workaround, please see commit msg.
167 commands =
168 make check
169
170 # Coverage.py [https://coverage.readthedocs.io/en/latest/] is a tool for
171 # measuring code coverage of Python programs. It monitors your program,
172 # noting which parts of the code have been executed, then analyzes the
173 # source to identify code that could have been executed but was not.
174
175 [coverage:run]
176 concurrency = multiprocessing
177 source = qemu/
178 parallel = true