I have a Python app based on Twisted and PyGTK. Twisted itself depends on zope.interface, and I don't import it directly.
Unfortunately, when I try to run my app, the following error ends up in the error log:
Traceback (most recent call last):
File "tasks.py", line 4, in <module>
File "ui\__init__.pyc", line 14, in <module>
File "twistedpythonlog.pyc", line 17, in <module>
ImportError: No module named zope.interface
Traceback (most recent call last):
File "tasks.py", line 4, in <module>
File "ui\__init__.pyc", line 14, in <module>
File "twistedpythonlog.pyc", line 17, in <module>
ImportError: No module named zope.interface
Traceback (most recent call last):
File "tasks.py", line 4, in <module>
File "ui\__init__.pyc", line 14, in <module>
File "twistedpythonlog.pyc", line 17, in <module>
ImportError: No module named zope.interface
I've tried adding every combination of zope.interface
and zope
to INCLUDES
and PACKAGES
, but doing so only gives me this build time error:
running py2exe
*** searching for required modules ***
C:Python26libsite-packagespy2exeuild_exe.py:16: DeprecationWarning: the sets module is deprecated
import sets
Traceback (most recent call last):
File "setup.py", line 75, in <module>
'gtk/*.ui'
File "C:Python26libdistutilscore.py", line 152, in setup
dist.run_commands()
File "C:Python26libdistutilsdist.py", line 975, in run_commands
self.run_command(cmd)
File "C:Python26libdistutilsdist.py", line 995, in run_command
cmd_obj.run()
File "C:Python26libsite-packagespy2exeuild_exe.py", line 243, in run
self._run()
File "C:Python26libsite-packagespy2exeuild_exe.py", line 296, in _run
self.find_needed_modules(mf, required_files, required_modules)
File "C:Python26libsite-packagespy2exeuild_exe.py", line 1306, in find_needed_modules
mf.import_hook(f)
File "C:Python26libsite-packagespy2exemf.py", line 719, in import_hook
return Base.import_hook(self,name,caller,fromlist,level)
File "C:Python26libsite-packagespy2exemf.py", line 136, in import_hook
q, tail = self.find_head_package(parent, name)
File "C:Python26libsite-packagespy2exemf.py", line 204, in find_head_package
raise ImportError, "No module named " + qname
ImportError: No module named zope
My setup.py
is:
from distutils.core import setup
import py2exe
def find_data_files(source,target,patterns):
# I've elided this, I doubt it's relevant to the problem
# ...
INCLUDES = [
'cairo',
'pango',
'pangocairo',
'atk',
'gobject',
'gio',
]
PACKAGES = [
'encodings',
]
setup(
name = 'MyApp',
description = 'My Application',
version = '1.0',
windows = [
{
'script': os.path.join('ui','tasks.py'),
'icon_resources': [
(1, os.path.join(
'ui','data','iconpack.ico'))
],
}
],
options = {
'py2exe': {
'packages': ','.join(PACKAGES),
'includes': ','.join(INCLUDES),
}
},
data_files = find_data_files(
'ui', 'ui', [
'data/*',
'gtk/*.ui'
])
)
How do I get py2exe to build this?
See Question&Answers more detail:
os