From 0bbcd2d39efe57220d041a8fe1a79cdd4b259790 Mon Sep 17 00:00:00 2001 From: tarek Date: Wed, 22 Jul 2009 12:51:33 +0200 Subject: hooked the patching code into setup.py --HG-- branch : distribute extra : rebase_source : 8e77b3c98ea725103494ee55ec403dc967dbb3a6 --- setup.py | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'setup.py') diff --git a/setup.py b/setup.py index b9e419a7..c2788314 100755 --- a/setup.py +++ b/setup.py @@ -13,6 +13,12 @@ from setuptools import setup, find_packages import sys scripts = [] +# if we are installing Distribute using "python setup.py install" +# we need to get setuptools out of the way +if 'install' in sys.argv[1:]: + from ez_setup import fake_setuptools + fake_setuptools() + setup( name="distribute", version=VERSION, -- cgit v1.2.1