I would like to be able to add a hook to my setup.py that will be run post-install (either when easy_install\'ing or when doing python setup.py install).
In my proje
As a work-around, you could set the zip_ok option to false so that your project is installed as an unzipped directory, then it will be a little easier for your users to find the editor config file.
In distutils2, it will be possible to install things to more directories, including custom directories, and to have pre/post-install/remove hooks.