mirror of
https://github.com/frappe/gunicorn.git
synced 2026-01-14 11:09:11 +08:00
django don't like eggs. use zip_safe=False now
This commit is contained in:
parent
614a5d25c1
commit
498809d39e
6
setup.py
6
setup.py
@ -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="""
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user