From 44be35381efb4731c235f0eedb521f0fe435b8b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pablo=20Mart=C3=ADn?= Date: Mon, 4 Nov 2013 10:02:00 +0100 Subject: [PATCH] Add zip_safe option to setup.py file --- setup.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setup.py b/setup.py index 6547c6cd8a..96c9f1734f 100755 --- a/setup.py +++ b/setup.py @@ -49,6 +49,7 @@ 'py3where': 'build', # Tell nose where to find tests under PY3. } + def write_nose_config(): """Write out setup.cfg. Since py3where has to be set for tests to run correctly in Python 3 we create this @@ -311,5 +312,6 @@ def build_extension(self, ext): "Topic :: Database"], cmdclass={"build_ext": custom_build_ext, "doc": doc}, + zip_safe=False, **extra_opts )