Archived
1
0

Added simplejson to py2exe explicit includes in order to fail faster if simplejson isn't present.

This commit is contained in:
Dan Helfman 2008-08-23 15:46:07 -07:00
parent ace983aac0
commit 137690d915

View File

@ -201,7 +201,7 @@ setup(
options = dict(
py2exe = dict(
packages = "cherrypy.filters",
includes = "email.header",
includes = "email.header,simplejson",
compressed = 1,
optimize = 2,
)