I'm using Paste to run a Pylons application. Is there a way to specify in my paste config file to use the egg from the current directory (the same dir as the config file) instead of looking in global site-packages?
For example, right now the config file has:
[app:main]
use = egg:example
This definitely looks to site-packages. This wouldn't be a problem, except I'm running two versions of the same egg on the same server in a deployable, programmatic way, so I need to be able to deploy them from somewhere besides site-packages.
Thanks.