Hello,

I have tried this too, but still no luck :/

Could it be something to do with 10.3.9? Has anyone had the icon working
with 10.3.9?

Tim

On Sun, 2006-11-26 at 21:37 +0100, Frank Niessink wrote:
> Tim Ansell:
> > Hello,
> > 
> > I'm still trying to bundle my application with py2app. 
> > 
> > I've used the img2icns application (version 0.3) to create a icns file
> > from a png file. However, when I use the "iconfile" option (either by
> > --iconfile or 'py2app':{"iconfile": ...) the icon does not get applied
> > to the bundle.
> 
> I had a similar issue. Adding a plist option to the py2app options 
> solved it. See setup.py fragment below.
> 
>      setupOptions.update(dict(app=['taskcoach.py'],
>          setup_requires=['py2app'],
>          options=dict(py2app=dict(argv_emulation=True, compressed=True,
>              dist_dir=builddir, optimize=2,
>              iconfile='icons.in/taskcoach.icns',
>              packages=['i18n'],
>              plist=dict(CFBundleIconFile='taskcoach.icns')))))
> 
> HTH, Frank
> _______________________________________________
> Pythonmac-SIG maillist  -  Pythonmac-SIG@python.org
> http://mail.python.org/mailman/listinfo/pythonmac-sig

_______________________________________________
Pythonmac-SIG maillist  -  Pythonmac-SIG@python.org
http://mail.python.org/mailman/listinfo/pythonmac-sig

Reply via email to