From eccf3d63c655e7a184ba339d747c98e965c1a63b Mon Sep 17 00:00:00 2001 From: Sebastian Thiel Date: Sun, 21 Nov 2010 13:06:40 +0100 Subject: [PATCH] setup.py: added zip_safe flag --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 073c136..30caa63 100755 --- a/setup.py +++ b/setup.py @@ -79,5 +79,6 @@ def get_data_files(self): package_dir = {'async':''}, ext_modules=[Extension('async.mod.zlib', ['mod/zlibmodule.c'])], license = "BSD License", + zip_safe=False, long_description = """Async is a framework to process interdependent tasks in a pool of workers""" )