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