Re: [Pythonmac-SIG] uniformative Error when launching app

2012-09-24 Thread Paul Wiseman
On 24 September 2012 18:02, Ronald Oussoren wrote: > > On 24 Sep, 2012, at 18:39, Geoffrey Irving wrote: > > > On Mon, Sep 24, 2012 at 12:21 AM, Ronald Oussoren > > wrote: > >> > >> On 21 Sep, 2012, at 21:36, Geoffrey Irving wrote: > >> > >>> I am trying to package up a mixed Python/C++ applic

Re: [Pythonmac-SIG] uniformative Error when launching app

2012-09-24 Thread Ronald Oussoren
On 24 Sep, 2012, at 18:39, Geoffrey Irving wrote: > On Mon, Sep 24, 2012 at 12:21 AM, Ronald Oussoren > wrote: >> >> On 21 Sep, 2012, at 21:36, Geoffrey Irving wrote: >> >>> I am trying to package up a mixed Python/C++ application using py2app. >>> My setup.py is >>> >>> from setuptools i

Re: [Pythonmac-SIG] uniformative Error when launching app

2012-09-24 Thread Geoffrey Irving
On Mon, Sep 24, 2012 at 12:21 AM, Ronald Oussoren wrote: > > On 21 Sep, 2012, at 21:36, Geoffrey Irving wrote: > >> I am trying to package up a mixed Python/C++ application using py2app. >> My setup.py is >> >>from setuptools import setup >>setup(app=['voxpopuli.py'],data_files=[],options

Re: [Pythonmac-SIG] uniformative Error when launching app

2012-09-24 Thread Ronald Oussoren
On 21 Sep, 2012, at 21:36, Geoffrey Irving wrote: > I am trying to package up a mixed Python/C++ application using py2app. > My setup.py is > >from setuptools import setup >setup(app=['voxpopuli.py'],data_files=[],options= > {'py2app'{'argv_emulation':True}},setup_requires=['py2app

[Pythonmac-SIG] uniformative Error when launching app

2012-09-21 Thread Geoffrey Irving
I am trying to package up a mixed Python/C++ application using py2app. My setup.py is from setuptools import setup setup(app=['voxpopuli.py'],data_files=[],options= {'py2app'{'argv_emulation':True}},setup_requires=['py2app']) and I invoke py2app via python setup.py py2app --no-