Commit 70ade027 authored by PJ Eby's avatar PJ Eby

Add link to Python Eggs page in doc; fix a problem with non-standard source

distros (where setup.py is in the archive root).

--HG--
branch : setuptools
extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041019
parent 2c97d740
......@@ -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')
):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment