Re: [Pythonmac-SIG] py2app: how to force packages into application bundle?

2008-09-16 Thread weddingmusic
thanks Joe, i modified setup.py to: #!/usr/bin/env python from setuptools import setup import py2app setup( app=['myApp.py'], options=dict( py2app=dict( packages=['mechanize'], site_packages=True, ), ), ) running: /usr/local/bin/python setup.py

Re: [Pythonmac-SIG] py2app: how to force packages into application bundle?

2008-09-16 Thread Joe Losco
thanks Joe, no problem.. glad I could help.. gets me the following output: running py2app Traceback (most recent call last): File "/Library/Frameworks/Python.framework/Versions/2.5/lib/ python2.5/site-packages/py2app-0.3.6-py2.5.egg/py2app/build_app.py", line 548, in _run self.run_nor

Re: [Pythonmac-SIG] py2app: how to force packages into application bundle?

2008-09-16 Thread weddingmusic
hi Joe and Pythonmac-SIG-Community still that does not work for me. what i have done: 1) easy_install -U somemodule==dev run into NameError: global name 'log' is not defined searching the web i figured out that this is a problem of subversion 1.5 and setuptools. at least i could fix this by

Re: [Pythonmac-SIG] py2app: how to force packages into application bundle?

2008-09-16 Thread Joe Losco
On Sep 16, 2008, at 11:15 AM, [EMAIL PROTECTED] wrote: 1) easy_install -U somemodule==dev run into NameError: global name 'log' is not defined searching the web i figured out that this is a problem of subversion 1.5 and setuptools. at least i could fix this by checkout current setuptools-d

Re: [Pythonmac-SIG] py2app: how to force packages into application bundle?

2008-09-16 Thread weddingmusic
Hi Joe, i got it now! thank's alot for your help!!! since my python installation is still quite fresh, i removed it completely and installed again. this time using Martin Ott's Subversion package 1.4.4 for checking out development versions of modules. so i have the packages as you advised to me

Re: [Pythonmac-SIG] py2app: how to force packages into application bundle?

2008-09-16 Thread Joe Losco
Hey thats great. Glad I could be of service. Odd that the packages line broke it in the end. Joe On Sep 16, 2008, at 6:27 PM, [EMAIL PROTECTED] wrote: Hi Joe, i got it now! thank's alot for your help!!! since my python installation is still quite fresh, i removed it completely and instal

Re: [Pythonmac-SIG] py2app: how to force packages into application bundle?

2008-09-16 Thread Christopher Barker
[EMAIL PROTECTED] wrote: searching the web i figured out that this is a problem of subversion 1.5 and setuptools. at least i could fix this by checkout current setuptools-dev manually: AARRGG! I really wish they would hurry up and get a release out with that fix!! Joe Losco wrote: However