Christopher Barker wrote: > Mike Orr wrote: >> We're testing it right now. I'm cc'ing my colleague who's involved >> more directly with it. > > That would be me. > > I'm trying to bundle up a pylons based app with py2app on OS-X. I've run > into a problem with Paste. The issue is that paste (and paste.deploy, > and paste.script) is set up as a setuptools namespace package.
Another strategy might be to use pyinstall, which will install these packages in a flat filesystem layout, so namespace packages won't really be important (that is, all the Paste packages will live in site-packages/paste/*). It still puts in .egg-info directories, so pkg_resources can see all the egg metadata (if you include those directories in py2app). -- Ian Bicking : [EMAIL PROTECTED] : http://blog.ianbicking.org --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "pylons-discuss" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/pylons-discuss?hl=en -~----------~----~----~----~------~----~------~--~---
