Metadata-Version: 2.1
Name: qemu
Version: 0.6.1.0a1
Summary: QEMU Python Build, Debug and SDK tooling.
Home-page: https://www.qemu.org/
Download-URL: https://www.qemu.org/download/
Maintainer: QEMU Developer Team
Maintainer-email: qemu-devel@nongnu.org
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: GNU General Public License v2 (GPLv2)
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Typing :: Typed
Requires-Python: >=3.6
Description-Content-Type: text/x-rst
Provides-Extra: devel
Requires-Dist: avocado-framework (>=90.0) ; extra == 'devel'
Requires-Dist: flake8 (>=3.6.0) ; extra == 'devel'
Requires-Dist: fusepy (>=2.0.4) ; extra == 'devel'
Requires-Dist: isort (>=5.1.2) ; extra == 'devel'
Requires-Dist: mypy (>=0.780) ; extra == 'devel'
Requires-Dist: pylint (>=2.8.0) ; extra == 'devel'
Requires-Dist: tox (>=3.18.0) ; extra == 'devel'
Requires-Dist: urwid (>=2.1.2) ; extra == 'devel'
Requires-Dist: urwid-readline (>=0.13) ; extra == 'devel'
Requires-Dist: Pygments (>=2.9.0) ; extra == 'devel'
Provides-Extra: fuse
Requires-Dist: fusepy (>=2.0.4) ; extra == 'fuse'
Provides-Extra: tui
Requires-Dist: urwid (>=2.1.2) ; extra == 'tui'
Requires-Dist: urwid-readline (>=0.13) ; extra == 'tui'
Requires-Dist: Pygments (>=2.9.0) ; extra == 'tui'

QEMU Python Tooling
===================

This package provides QEMU tooling used by the QEMU project to build,
configure, and test QEMU. It is not a fully-fledged SDK and it is subject
to change at any time.

Usage
-----

The ``qemu.qmp`` subpackage provides a library for communicating with
QMP servers. The ``qemu.machine`` subpackage offers rudimentary
facilities for launching and managing QEMU processes. Refer to each
package's documentation
(``>>> help(qemu.qmp)``, ``>>> help(qemu.machine)``)
for more information.

Contributing
------------

This package is maintained by John Snow <jsnow@redhat.com> as part of
the QEMU source tree. Contributions are welcome and follow the `QEMU
patch submission process
<https://wiki.qemu.org/Contribute/SubmitAPatch>`_, which involves
sending patches to the QEMU development mailing list.

John maintains a `GitLab staging branch
<https://gitlab.com/jsnow/qemu/-/tree/python>`_, and there is an
official `GitLab mirror <https://gitlab.com/qemu-project/qemu>`_.

Please report bugs on the `QEMU issue tracker
<https://gitlab.com/qemu-project/qemu/-/issues>`_ and tag ``@jsnow`` in
the report.

Optional packages necessary for running code quality analysis for this
package can be installed with the optional dependency group "devel":
``pip install qemu[devel]``.

``make develop`` can be used to install this package in editable mode
(to the current environment) *and* bring in testing dependencies in one
command.

``make check`` can be used to run the available tests.
