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, t
I was facing this issue in creating a package using py2exe in Windows XP SP3. I figured out that py2exe was not determining the dependencies correctly.
To solve this issue, I uninstalled my third party package(s) and installed them using following easy_install command
easy_install -Z
The -Z option unzips the package details, and hence the content is not compressed. When you run py2exe now, it will correctly detect the dependencies.
Hope this helps!