diff options
author | pje <pje@6015fed2-1504-0410-9fe1-9d1591cc4771> | 2005-05-29 01:36:01 +0000 |
---|---|---|
committer | pje <pje@6015fed2-1504-0410-9fe1-9d1591cc4771> | 2005-05-29 01:36:01 +0000 |
commit | d3ed32fbed0ae6f9755e65595037a43a903b5e7e (patch) | |
tree | 99906d6d0a3aba322c90728def5722bd32586061 /easy_install.py | |
parent | 9e6eea1b3b32e9e79b1080369e4bc179d733aacd (diff) | |
download | python-setuptools-d3ed32fbed0ae6f9755e65595037a43a903b5e7e.tar.gz |
Add link to Python Eggs page in doc; fix a problem with non-standard source
distros (where setup.py is in the archive root).
git-svn-id: http://svn.python.org/projects/sandbox/trunk/setuptools@41019 6015fed2-1504-0410-9fe1-9d1591cc4771
Diffstat (limited to 'easy_install.py')
-rwxr-xr-x | easy_install.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/easy_install.py b/easy_install.py index e88c052..0ca094b 100755 --- a/easy_install.py +++ b/easy_install.py @@ -13,7 +13,9 @@ Downloading and Installing a Package ------------------------------------ For basic use of ``easy_install``, you need only supply the filename or URL of -a source distribution or .egg file (Python Egg). +a source distribution or .egg file (`Python Egg`__). + +__ http://peak.telecommunity.com/DevCenter/PythonEggs **Example 1**. Download a source distribution, automatically building and installing it:: @@ -160,8 +162,6 @@ from pkg_resources import * - - class Installer: """Manage a download/build/install process""" @@ -279,7 +279,7 @@ class Installer: ) setup_script = setups[0] - self._run_setup(setups[0]) + self._run_setup(setup_script) for egg in glob( os.path.join(os.path.dirname(setup_script),'dist','*.egg') ): |