From 9c272308e24d7b12a3821e32d4ff6d7265d6a780 Mon Sep 17 00:00:00 2001 From: Zooko O'Whielacronx Date: Thu, 13 Sep 2007 15:37:55 -0700 Subject: [PATCH] set the zip_safe flag to False This means that by default the allmydata-tahoe egg will be a directory with a tree of files instead of a zip file containing files. I prefer the former because it makes it easier for people to hack into it. Unfortunately the files therein are still going to be .pyc's instead of .py's, if I understand correctly. I would prefer for them to be .py's. See also discussion on the distutils-sig mailing list: http://mail.python.org/pipermail/distutils-sig/2007-July/007827.html --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index eb4d1b9a..3479aaaa 100644 --- a/setup.py +++ b/setup.py @@ -133,4 +133,5 @@ setup(name='allmydata-tahoe', # Extension("allmydata.Crypto.PublicKey._fastmath", # sources=["src/allmydata/Crypto/_fastmath.c"]), ], + zip_safe=False, # We prefer unzipped for easier access. ) -- 2.45.2