aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Snow <jsnow@redhat.com>2021-06-02 20:37:05 -0400
committerJohn Snow <jsnow@redhat.com>2021-06-18 16:10:06 -0400
commit7c4c595f13fa9bb19d8b6a1ed328aab5469c063a (patch)
tree1bc5033644dd7b556572f50c8f3f9bbf44ef4ed7
parentc750c02891a81f07c6c90735432306bea79fac4b (diff)
downloadqemu-7c4c595f13fa9bb19d8b6a1ed328aab5469c063a.zip
qemu-7c4c595f13fa9bb19d8b6a1ed328aab5469c063a.tar.gz
qemu-7c4c595f13fa9bb19d8b6a1ed328aab5469c063a.tar.bz2
python/qmp: add qom script entry points
Add the 'qom', 'qom-set', 'qom-get', 'qom-list', and 'qom-tree' scripts to the qemu.qmp package. When you install this package, these scripts will become available on your command line. (e.g. when inside of a venv, `cd python && pip install .` will add 'qom', 'qom-set', etc to your $PATH.) Signed-off-by: John Snow <jsnow@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> Message-id: 20210603003719.1321369-6-jsnow@redhat.com Signed-off-by: John Snow <jsnow@redhat.com>
-rw-r--r--python/setup.cfg8
1 files changed, 8 insertions, 0 deletions
diff --git a/python/setup.cfg b/python/setup.cfg
index 0fcdec6..a19029d 100644
--- a/python/setup.cfg
+++ b/python/setup.cfg
@@ -37,6 +37,14 @@ devel =
pylint >= 2.8.0
tox >= 3.18.0
+[options.entry_points]
+console_scripts =
+ qom = qemu.qmp.qom:main
+ qom-set = qemu.qmp.qom:QOMSet.entry_point
+ qom-get = qemu.qmp.qom:QOMGet.entry_point
+ qom-list = qemu.qmp.qom:QOMList.entry_point
+ qom-tree = qemu.qmp.qom:QOMTree.entry_point
+
[flake8]
extend-ignore = E722 # Prefer pylint's bare-except checks to flake8's
exclude = __pycache__,