jose wrote: > Dear Ian, > Thanks for the info, I've been messing with this and have some > quesitons. From your example it seems that all of the WSCGI apps (or > eggs really) need to be in the same folder, is that true? and if not > what would be different if I wanted to revfer to an application which > was not relative to my composit ini
Applications/Eggs are found using pkg_resources (part of setuptools). That generally means that the egg has to be on sys.path somewhere. Or, for application development, I usually use "python setup.py develop", which doesn't put the egg directly on sys.path, but makes it available to be loaded. -- 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 -~----------~----~----~----~------~----~------~--~---
