Re: [Pythonmac-SIG] py2app wx.lib.pubsub.Publisher problem

2011-09-18 Thread Hyeonseung I
Thanks Werner, thanks Chris, After many trials, it works. 1. add 'packages' to options in setup.py setup( app=APP, data_files=DATA_FILES, options={'py2app': {'argv_emulation': True, 'packages':['wx.lib.pubsub']}}, setup_requires=['py2app'], ) 2. due to 'packages', wx.l

Re: [Pythonmac-SIG] py2app wx.lib.pubsub.Publisher problem

2011-09-17 Thread Chris Barker
On 9/16/11 8:37 PM, Hyeonseung I wrote: I`m trying to make an app bundle via py2app from a project using wxPython and it`s pub feature. But there is a problem whenever running the app. In my code, Publisher is imported as: from wx.lib.pubsub import Publisher as pub ... But when I run the ap