I've installed Sentry using the easyinstall process which keeps all of the Sentry code in an egg folder inside of the VirtualEnv's site-packages. Now I'd like to add in the webhooks plugin...but I need to make a slight change in the functionality.
Doing a pip install on the sentry-webhooks plugin puts the webhook's code in the site-packages as well. The only problem is that since I'm going to make changes, I need to keep the changes in our team's repository for replication.
Ideally the file structure would look like this:
sentry-venv/
-bin/
-lib/
-my-repository/
--sentry.conf.py
--modified-sentry-webhooks/
Is this possible? If it is, how would I go about telling Sentry where to find it?
Thanks folks!