diff options
-rwxr-xr-x | README.txt | 16 | ||||
-rw-r--r-- | bootstraping.py (renamed from bootstrap.py) | 0 | ||||
-rwxr-xr-x | setup.py | 4 |
3 files changed, 10 insertions, 10 deletions
@@ -40,20 +40,20 @@ are available at the PyPI page and here : http://bitbucket.org/tarek/distribute/downloads. It can be installed using easy_install or pip, with the source tarball, with the -eggs distribution, or using the ``bootstrap.py`` script provided online. +eggs distribution, or using the ``bootstraping.py`` script provided online. -``bootstrap.py`` is the simplest and preferred way on all systems. +``bootstraping.py`` is the simplest and preferred way on all systems. -bootstrap.py -============ +bootstraping.py +=============== -Download ``bootstrap.py`` and execute it, using the Python interpreter of +Download ``bootstraping.py`` and execute it, using the Python interpreter of your choice. If your shell has the `wget` programm you can do:: - $ wget http://bitbucket.org/tarek/distribute/downloads/bootstrap.py - $ python bootstrap.py + $ wget http://bitbucket.org/tarek/distribute/downloads/bootstraping.py + $ python bootstraping.py easy_install or pip =================== @@ -117,7 +117,7 @@ Windows ------- Don't install Distribute trying to execute the egg, because it's aimed to -sh-based shells. Instead, use the ``bootstrap.py`` method, that will +sh-based shells. Instead, use the ``bootstraping.py`` method, that will download the egg for you, then install the egg. --------------------------- diff --git a/bootstrap.py b/bootstraping.py index 27b49c78..27b49c78 100644 --- a/bootstrap.py +++ b/bootstraping.py @@ -16,7 +16,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 bootstrap import before_install + from bootstraping import before_install before_install() dist = setup( @@ -100,7 +100,7 @@ dist = setup( scripts = scripts, ) if 'install' in sys.argv[1:]: - from bootstrap import after_install + from bootstraping import after_install after_install(dist) |