Re: [Pythonmac-SIG] Py2App and PyQT

2009-01-20 Thread Eddie L
Ronald Oussoren wrote: > > > The file is generated by code in the module py2app.build_app, from > fragments in py2app.bootstrap. > > Thank you, that solved my problem. I went into the bootstrap folder and added the line into build_app.py, now it's always included in my apps -Eddie -- View

Re: [Pythonmac-SIG] Py2App and PyQT

2009-01-15 Thread Eddie L
Christopher Barker wrote: > > Some quick poking did not make it clear to me where py2app builds the > __boot.__py > file though. > If you create an app with py2app then right click on it and click show package contents then you can browse the app's contents. __boot__.py is located in Content/

Re: [Pythonmac-SIG] Py2App and PyQT

2009-01-12 Thread Eddie L
I had the exact same problem and fixed it adding that line to the __boot__.py file in the app's package contents, but I was wondering if there was a way to tell py2app to do this automatically in the setup script because otherwise I'd have to do it manually every time I build my project. Py2exe ha