aboutsummaryrefslogtreecommitdiffstats
path: root/setup.py
diff options
context:
space:
mode:
authortarek <none@none>2009-08-08 21:10:11 +0200
committertarek <none@none>2009-08-08 21:10:11 +0200
commit96f2536dcc1056dffa72f0877f1683b6633440f0 (patch)
tree19b9e79451aca738677aa72cf67a444a97be61c6 /setup.py
parentdef1a4f577242d326a93268c2851e2b3f48c5329 (diff)
downloadexternal_python_setuptools-96f2536dcc1056dffa72f0877f1683b6633440f0.tar.gz
external_python_setuptools-96f2536dcc1056dffa72f0877f1683b6633440f0.tar.bz2
external_python_setuptools-96f2536dcc1056dffa72f0877f1683b6633440f0.zip
bootstrapping.py -> distribute_setup.py
--HG-- branch : distribute extra : rebase_source : 4e57a0bc1a8bea73bc8ed0f102d0e0907c554235
Diffstat (limited to 'setup.py')
-rwxr-xr-xsetup.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index 75aa094e..4deaa1f6 100755
--- a/setup.py
+++ b/setup.py
@@ -17,7 +17,7 @@ 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 bootstrapping import before_install
+ from distribute_setup import before_install
before_install()
dist = setup(
@@ -101,7 +101,7 @@ dist = setup(
scripts = scripts,
)
if 'install' in sys.argv[1:]:
- from bootstrapping import after_install
+ from distribute_setup import after_install
after_install(dist)