django don't like eggs. use zip_safe=False now

This commit is contained in:
Benoit Chesneau 2010-02-03 00:01:45 +01:00
parent 614a5d25c1
commit 498809d39e

View File

@ -9,7 +9,7 @@ from setuptools import setup, find_packages
setup(
name = 'gunicorn',
version = '0.3.1',
version = '0.3.2',
description = 'WSGI HTTP Server for UNIX',
long_description = file(
@ -35,8 +35,8 @@ setup(
'Topic :: Utilities',
'Topic :: Software Development :: Libraries :: Python Modules',
],
packages = ['gunicorn'],
zip_safe = False,
packages = find_packages(exclude=['examples', 'tests']),
include_package_data = True,
entry_points="""