virt-manager/virt-clone
Cole Robinson 8fe0a208db Move virt-* code into their modules
This layout is closer to what most python modules have nowadays.
It also simplifies testing and static analysis setup.

Keep virt-* wrappers locally, for ease of running these commands
from a git checkout.

Adjust the wrapper binaries we install on via packaging to be
pure python, which makes things like running gdb easier.

Signed-off-by: Cole Robinson <crobinso@redhat.com>
2020-01-26 18:27:20 -05:00

10 lines
208 B
Python
Executable File

#!/usr/bin/python3
# Convenience wrapper for easily running virt-clone from the git tree
import os
import sys
sys.path.insert(0, os.path.dirname(__file__))
from virtinst import virtclone
virtclone.runcli()