Now I remember.
It is probable that it works for me because I have explicitly specified
Werkzeug in the "packages" option to py2exe.
Something like this (untested)
setup(service = [target],
zipfile = "lib/library.zip",
data_files = get_datafiles(),
options = {'global': {'verbose': '0'},
'py2exe': {'optimize': 2,
'excludes': 'perfmon IPython EasyDialogs
hotshot adodbapi Tkinter '
'pyreadline wx nose genshi test
pygtk'.split(),
'dll_excludes': 'OCI.dll w9xpopen.exe
gdiplus.dll'.split(),
'packages': ['email',
'werkzeug',
],
}})
I almost always specify the "packages" and "includes" option explicitly
instead of depending on py2exe
discovery and I have forgotten about that when responding to you yesterday.
--
You received this message because you are subscribed to the Google Groups
"pocoo-libs" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/pocoo-libs?hl=en.