From 3d6789f728b14483ce433fab665327bce1e40ab7 Mon Sep 17 00:00:00 2001 From: Adam Waldenberg Date: Tue, 14 Jan 2014 07:18:25 +0100 Subject: [PATCH] Set the zip_safe flag of setup.py to False (Fixes issue 17). This hopefully fixes the faulty behavior in egg installations. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 35fc4f9..1aa2fbd 100644 --- a/setup.py +++ b/setup.py @@ -48,5 +48,5 @@ setup( package_data = {"": ["html/*", "translations/*"]}, data_files = [("share/doc/gitinspector", glob("*.txt"))], entry_points = {"console_scripts": ["gitinspector = gitinspector.gitinspector:main"]}, - zip_safe = True + zip_safe = False )