diff options
author | PJ Eby <distutils-sig@python.org> | 2005-11-03 02:34:26 +0000 |
---|---|---|
committer | PJ Eby <distutils-sig@python.org> | 2005-11-03 02:34:26 +0000 |
commit | 31a50d65fca476cdccdb4c9eea645aa5680ec71c (patch) | |
tree | 0f2a209bb3376b142609e0cf6234b873e9a7949f /setuptools.txt | |
parent | 4242a32e194db4930bc6ba1b355d75ad14ad9f0e (diff) | |
download | external_python_setuptools-31a50d65fca476cdccdb4c9eea645aa5680ec71c.tar.gz external_python_setuptools-31a50d65fca476cdccdb4c9eea645aa5680ec71c.tar.bz2 external_python_setuptools-31a50d65fca476cdccdb4c9eea645aa5680ec71c.zip |
Switch setuptools to use 'dev-rNNNN' version tags by default, and configure
so that people can use 'ez_setup.py setuptools==dev' to fetch the latest
in-development version.
--HG--
branch : setuptools
extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041381
Diffstat (limited to 'setuptools.txt')
-rwxr-xr-x | setuptools.txt | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/setuptools.txt b/setuptools.txt index 0395ab2c..82bd81da 100755 --- a/setuptools.txt +++ b/setuptools.txt @@ -62,6 +62,10 @@ Feature Highlights: * Create extensible applications and frameworks that automatically discover extensions, using simple "entry points" declared in a project's setup script. +In addition to the PyPI downloads, the development version of ``setuptools`` +is available from the `Python SVN sandbox`_. + +.. _Python SVN sandbox: http://svn.python.org/projects/sandbox/trunk/setuptools/#egg=setuptools-dev .. contents:: **Table of Contents** @@ -98,13 +102,13 @@ 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:: +To get the in-development version of setuptools, first install a stable version +using the instructions above. Then 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 + ez_setup.py setuptools==dev -You can then install it using the usual "setup.py install" incantation. +This will download and install the latest development (i.e. unstable) version +of setuptools from the Python Subversion sandbox. (Note that ``setuptools`` *must* be installed as an egg directory; it will not operate correctly otherwise. If you are unable to install to a valid |