Maybe per analogiam to this your should try:
setup(windows=[{"script":"test.py"}], options={"py2exe":{"includes":["sip", "_qt"]}})
Maybe per analogiam to this your should try:
setup(windows=[{"script":"test.py"}], options={"py2exe":{"includes":["sip", "_qt"]}})
Try this:
from distutils.core import setup
import py2exe
setup(
windows = [{"script": "test.py"}],
options = {"py2exe":{"includes":["sip", "PyQt4._qt"]}}
)
Bookmarks