Metadata-Version: 2.4
Name: virt-tuner
Version: 0.0.3
Summary: VM definition tuner
Home-page: https://github.com/SUSE/virt-tuner
Author: Cedric Bosdonnat
Author-email: cbosdonnat@suse.com
License: GPLv3+
Keywords: virtualization
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: System Administrators
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
License-File: LICENSE
License-File: AUTHORS
License-File: AUTHORS.in
Provides-Extra: dev
Requires-Dist: pylint; extra == "dev"
Requires-Dist: black; extra == "dev"
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: home-page
Dynamic: keywords
Dynamic: license
Dynamic: license-file
Dynamic: provides-extra
Dynamic: summary

virt-tuner is a tool modifying the libvirt XML definition of a virtual machine to optimize it
depending on a selected use case.

Dependencies
------------

 * python 3
 * python libvirt binding

Hacking
-------

To test changes without installing the package in your machine,
use the run script. For example to run virt-tuner, use a command
like the following one:

    PYTHONPATH=$PWD/src python3 -m virt_tuner --help

The following commands will be useful for anyone writing patches:

    tox                  # Run local unit test suite with coverage
    pytest               # Direct run of the test suite, usefull for debugging
    ./setup.py lint      # Run pylint and black against the codebase

Any patches shouldn't change the output of `tox` or `lint`. The `lint` requires `pylint` and `black` to be installed.
