diff options
author | tarek <none@none> | 2009-08-08 21:10:11 +0200 |
---|---|---|
committer | tarek <none@none> | 2009-08-08 21:10:11 +0200 |
commit | 96f2536dcc1056dffa72f0877f1683b6633440f0 (patch) | |
tree | 19b9e79451aca738677aa72cf67a444a97be61c6 /setup.py | |
parent | def1a4f577242d326a93268c2851e2b3f48c5329 (diff) | |
download | external_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-x | setup.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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) |