diff options
author | PJ Eby <distutils-sig@python.org> | 2005-07-25 03:12:51 +0000 |
---|---|---|
committer | PJ Eby <distutils-sig@python.org> | 2005-07-25 03:12:51 +0000 |
commit | 54bb8e4003534a9af54028ef719eda5ba6088bac (patch) | |
tree | bdae8c0810e7a1a4ecf7e93669cbba45f0de9fcb /setuptools.txt | |
parent | 1c40632b88d76aea178e751483645ec3d32c81d9 (diff) | |
download | external_python_setuptools-54bb8e4003534a9af54028ef719eda5ba6088bac.tar.gz external_python_setuptools-54bb8e4003534a9af54028ef719eda5ba6088bac.tar.bz2 external_python_setuptools-54bb8e4003534a9af54028ef719eda5ba6088bac.zip |
Misc. bug fixes and doc additions. Add 'iter_entry_points()' API.
--HG--
branch : setuptools
extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041153
Diffstat (limited to 'setuptools.txt')
-rwxr-xr-x | setuptools.txt | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/setuptools.txt b/setuptools.txt index 50bc3b11..b9911703 100755 --- a/setuptools.txt +++ b/setuptools.txt @@ -72,6 +72,14 @@ You may receive a message telling you about an obsolete version of setuptools being present; if so, you must be sure to delete it entirely, along with the old ``pkg_resources`` module if it's present on ``sys.path``. +To get the in-development version of setuptools, run:: + + cvs -d:pserver:anonymous@cvs.sourceforge.net:/cvsroot/python login + cvs -z3 -d:pserver:anonymous@cvs.sourceforge.net:/cvsroot/python \ + co -d setuptools python/nondist/sandbox/setuptools + +You can then install it using the usual "setup.py install" incantation. + Basic Use ========= |