[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v4 4/7] python: Add entry point for aqmp-tui
From: |
G S Niteesh Babu |
Subject: |
[PATCH v4 4/7] python: Add entry point for aqmp-tui |
Date: |
Thu, 19 Aug 2021 23:08:28 +0530 |
Add an entry point for aqmp-tui. This will allow it to be run from
the command line using "aqmp-tui localhost:1234"
More options available in the TUI can be found using "aqmp-tui -h"
Signed-off-by: G S Niteesh Babu <niteesh.gs@gmail.com>
---
python/setup.cfg | 1 +
1 file changed, 1 insertion(+)
diff --git a/python/setup.cfg b/python/setup.cfg
index 1ff2b907a2..64ed0be0a7 100644
--- a/python/setup.cfg
+++ b/python/setup.cfg
@@ -66,6 +66,7 @@ console_scripts =
qom-fuse = qemu.qmp.qom_fuse:QOMFuse.entry_point [fuse]
qemu-ga-client = qemu.qmp.qemu_ga_client:main
qmp-shell = qemu.qmp.qmp_shell:main
+ aqmp-tui = qemu.aqmp.aqmp_tui:main [tui]
[flake8]
extend-ignore = E722 # Prefer pylint's bare-except checks to flake8's
--
2.17.1
- [PATCH v4 0/7] AQMP TUI Draft, G S Niteesh Babu, 2021/08/19
- [PATCH v4 1/7] python: disable pylint errors for aqmp-tui, G S Niteesh Babu, 2021/08/19
- [PATCH v4 2/7] python: Add dependencies for AQMP TUI, G S Niteesh Babu, 2021/08/19
- [PATCH v4 3/7] python/aqmp-tui: Add AQMP TUI draft, G S Niteesh Babu, 2021/08/19
- [PATCH v4 4/7] python: Add entry point for aqmp-tui,
G S Niteesh Babu <=
- [PATCH v4 5/7] python: add optional pygments dependency, G S Niteesh Babu, 2021/08/19
- [PATCH v4 6/7] python/aqmp-tui: Add syntax highlighting, G S Niteesh Babu, 2021/08/19
- [PATCH v4 7/7] python/aqmp-tui: Add QMP connection manager, G S Niteesh Babu, 2021/08/19
- Re: [PATCH v4 0/7] AQMP TUI Draft, John Snow, 2021/08/21