Issue 1617496: The ability to keep configuration files intact (original) (raw)

While working on one project I've met a problem that I can't to specify to not tuch my configuration files for python package that uses setup.py technique. To solve this problem I've implemented the following solution that works for me. If this idea worths it, I could made a pacth relative needed version of python.

+class smart_install_data(install_data):

setup(name = 'usher', version = '0.1', package_dir = { 'usher':'python' }, packages = ['usher', 'usher.ushercli', 'usher.usherlnm', 'usher.utils', 'usher.usherctrl'],