aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2013-11-27 13:21:20 -0500
committerJason R. Coombs <jaraco@jaraco.com>2013-11-27 13:21:20 -0500
commit727779f0ec69dea4624c684b551192f59211f697 (patch)
tree9e20f91136f4ff21e223a7cafca61ab2a5436cd7
parent13f43fe5d5e468fef508c390912c715f02a51839 (diff)
downloadexternal_python_setuptools-727779f0ec69dea4624c684b551192f59211f697.tar.gz
external_python_setuptools-727779f0ec69dea4624c684b551192f59211f697.tar.bz2
external_python_setuptools-727779f0ec69dea4624c684b551192f59211f697.zip
Update documentation
-rw-r--r--ez_setup.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/ez_setup.py b/ez_setup.py
index 4d76ec27..2aa994b3 100644
--- a/ez_setup.py
+++ b/ez_setup.py
@@ -1,14 +1,14 @@
#!python
"""Bootstrap setuptools installation
-If you want to use setuptools in your package's setup.py, just include this
-file in the same directory with it, and add this to the top of your setup.py::
+To use setuptools in your package's setup.py, include this
+file in the same directory and add this to the top of your setup.py::
from ez_setup import use_setuptools
use_setuptools()
-If you want to require a specific version of setuptools, set a download
-mirror, or use an alternate download directory, you can do so by supplying
+To require a specific version of setuptools, set a download
+mirror, or use an alternate download directory, simply supply
the appropriate options to ``use_setuptools()``.
This file can also be run as a script to install or upgrade setuptools.