aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndy Lutomirski <luto@kernel.org>2018-11-02 14:49:56 -0700
committerAndy Lutomirski <luto@kernel.org>2018-11-02 14:51:01 -0700
commit0ed24f687fc34a27c29cea86a54948edcac2d8bf (patch)
treeeddcc315fe97f220bb772d34e17c6ee5796498bf
parent98ad7fa7212e49d8029a6bd4139003c32065501b (diff)
downloadvirtme-0ed24f687fc34a27c29cea86a54948edcac2d8bf.tar.gz
setup.py: Set zip_safe to false
We're not doing ourselves any favors by being installed as a zip file -- the guest tools need to get extracted to do anything. It works, but still. Signed-off-by: Andy Lutomirski <luto@kernel.org>
-rwxr-xr-xsetup.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index f21e9eb..9f7dc63 100755
--- a/setup.py
+++ b/setup.py
@@ -41,5 +41,9 @@ setup(
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Operating System :: POSIX :: Linux',
- ]
+ ],
+
+ # virtme actually does work as a zip, but that forces the guest
+ # tools to get extracted at run time.
+ zip_safe = False,
)