Best Practices: Plugins Folder

Likely a redundant question, but where do you guys recommend one place a plugin?

Thanks

For development? Use ~/dev/indico/plugins/myplugin/ as the root where you have your setup.py and indico_myplugin subdirectory.

For deployment? Build a wheel using the build-wheel.py script that comes with the Indico source, copy it somewhere (e.g. /tmp/) on your production server and use pip install /path/to/your.whl to install it.

Great answer! Thank you, @ThiefMaster!