I had an simple PyQt4 program that uses a resource file. After
executable generation I can't see the resource file content. I tried
many variations (i.e: 'data_contents') but anyone works

Basically my script is:

from distutils.core import setup
import py2exe, sys, os

sys.argv.append('py2exe')
setup(
                options = {'py2exe': {"includes":["sip"],"bundle_files": 1 }},
                windows = [{'script': "window.py"}],
                zipfile = None,
         )

There are some workaround for this?

--tm
_______________________________________________
PyQt mailing list    [email protected]
http://www.riverbankcomputing.com/mailman/listinfo/pyqt

Reply via email to