The large corporation I work with uses a custom version of Setuptools. This private setuptools plug is designed to solve specific network and security issues that are unique to our organization. The bottom line is that neither the standard Setuptools nor Distribute will work as expected in our environment.
I like to use Ian Bicking's excellent VirtualEnv tool for systems, especially in our test systems, where we need to set up a large number of isolated areas for test code - for example, in our continuous integration environment.
Unfortunately, when I try to create a new virtual environment, the virtualenv tool tries to get and install the latest version of the official version of Setuptools. This is not for the reasons stated above, but also because the corporate firewall has blocked the action.
Instead of installing the official version:
setuptools-0.6c11-py2.4.egg
I would like to install our custom version, which can be called something like:
setuptools-foo-0.6c11-py2.4.egg
This egg can always be guaranteed to be found in system global site packages. I can also guarantee that it is present on all of our corporate servers.
Can you help me make my virtualenv use my customized setuptools instead of the regular version of setuptools.
source
share