Is it possible to specify a custom path for Python modules during installer creation (or during the actual installation)? As an example, suppose I have 5 modules for which I create an installer using:
c:\>python setup.py bdist
Everything is correctly packaged, but when I install, they force me to install packages into the site. I need to specify the user directory of my (or the choice of the installer). At a minimum, I need to override the default value, so my custom path is displayed by default.
Is this possible using the built-in distribution?
python distutils
Bill craun
source share