summaryrefslogtreecommitdiffstats
path: root/python/setup.cfg
diff options
context:
space:
mode:
authorG S Niteesh Babu2021-08-24 00:07:42 +0200
committerJohn Snow2021-09-27 18:10:29 +0200
commit974e2f4722d719618502c43271f54cc10aec1dc7 (patch)
treeff86b37c1bdf550586ce50d734660878496452a1 /python/setup.cfg
parentpython/aqmp: Add Coverage.py support (diff)
downloadqemu-974e2f4722d719618502c43271f54cc10aec1dc7.tar.gz
qemu-974e2f4722d719618502c43271f54cc10aec1dc7.tar.xz
qemu-974e2f4722d719618502c43271f54cc10aec1dc7.zip
python: Add dependencies for AQMP TUI
Added dependencies for the upcoming AQMP TUI under the optional 'tui' group. The same dependencies have also been added under the devel group since no work around has been found for optional groups to imply other optional groups. Signed-off-by: G S Niteesh Babu <niteesh.gs@gmail.com> Message-Id: <20210823220746.28295-2-niteesh.gs@gmail.com> Signed-off-by: John Snow <jsnow@redhat.com>
Diffstat (limited to 'python/setup.cfg')
-rw-r--r--python/setup.cfg8
1 files changed, 8 insertions, 0 deletions
diff --git a/python/setup.cfg b/python/setup.cfg
index 4fd0c68a5b..efcda23c48 100644
--- a/python/setup.cfg
+++ b/python/setup.cfg
@@ -44,11 +44,18 @@ devel =
mypy >= 0.770
pylint >= 2.8.0
tox >= 3.18.0
+ urwid >= 2.1.2
+ urwid-readline >= 0.13
# Provides qom-fuse functionality
fuse =
fusepy >= 2.0.4
+# AQMP TUI dependencies
+tui =
+ urwid >= 2.1.2
+ urwid-readline >= 0.13
+
[options.entry_points]
console_scripts =
qom = qemu.qmp.qom:main
@@ -138,6 +145,7 @@ allowlist_externals = make
deps =
.[devel]
.[fuse] # Workaround to trigger tox venv rebuild
+ .[tui] # Workaround to trigger tox venv rebuild
commands =
make check