[Python-checkins] python/nondist/sandbox/setuptools setup.cfg, NONE, 1.1 EasyInstall.txt, 1.29, 1.30 ez_setup.py, 1.13, 1.14 setup.py, 1.22, 1.23 setuptools.txt, 1.1, 1.2

pje@users.sourceforge.net pje at users.sourceforge.net
Fri Jul 8 17:52:12 CEST 2005


Update of /cvsroot/python/python/nondist/sandbox/setuptools
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23997

Modified Files:
	EasyInstall.txt ez_setup.py setup.py setuptools.txt 
Added Files:
	setup.cfg 
Log Message:
Doc and other updates for 0.5a8 release.  Add project aliases for source
and binary register+upload.


--- NEW FILE: setup.cfg ---
[aliases]
source = register sdist binary
binary = bdist_egg upload --show-response


Index: EasyInstall.txt
===================================================================
RCS file: /cvsroot/python/python/nondist/sandbox/setuptools/EasyInstall.txt,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -d -r1.29 -r1.30
--- EasyInstall.txt	8 Jul 2005 15:13:14 -0000	1.29
+++ EasyInstall.txt	8 Jul 2005 15:52:03 -0000	1.30
@@ -13,6 +13,11 @@
 can do that from the `User Preferences
 <http://peak.telecommunity.com/DevCenter/UserPreferences>`_ page. Thanks!)
 
+(Also, if you'd like to learn about how you can use ``setuptools`` to make your
+own packages work better with EasyInstall, or provide EasyInstall-like features
+without requiring your users to use EasyInstall directly, you'll probably want
+to check out the full `setuptools`_ documentation as well.)
+
 .. contents:: **Table of Contents**
 
 
@@ -24,7 +29,7 @@
 -------------------------
 
 Windows users can just download and run the `setuptools binary installer for
-Windows <http://peak.telecommunity.com/dist/setuptools-0.5a7.win32.exe>`_.
+Windows <http://peak.telecommunity.com/dist/setuptools-0.5a8.win32.exe>`_.
 All others should just download `ez_setup.py
 <http://peak.telecommunity.com/dist/ez_setup.py>`_, and run it; this will
 download and install the appropriate ``setuptools`` egg for your Python
@@ -65,7 +70,7 @@
 **Example 2**. Install or upgrade a package by name and version by finding
 links on a given "download page"::
 
-    easy_install -f http://peak.telecommunity.com/dist "setuptools>=0.5a7"
+    easy_install -f http://peak.telecommunity.com/dist "setuptools>=0.5a8"
 
 **Example 3**. Download a source distribution from a specified URL,
 automatically building and installing it::
@@ -490,6 +495,12 @@
    in Exemaker.  So, don't use Exemaker to wrap ``easy_install.py``, or at any
    rate don't expect it to work with all packages.
 
+0.5a8
+ * There is now a separate documentation page for `setuptools`_; revision
+   history that's not specific to EasyInstall has been moved to that page.
+
+ .. _setuptools: http://peak.telecommunity.com/DevCenter/setuptools
+
 0.5a5
  * Made ``easy_install`` a standard ``setuptools`` command, moving it from
    the ``easy_install`` module to ``setuptools.command.easy_install``.  Note
@@ -587,7 +598,7 @@
  * Misc. bug fixes
 
 0.3a1
- Initial release.
+ * Initial release.
 
 
 Future Plans

Index: ez_setup.py
===================================================================
RCS file: /cvsroot/python/python/nondist/sandbox/setuptools/ez_setup.py,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- ez_setup.py	7 Jul 2005 16:38:31 -0000	1.13
+++ ez_setup.py	8 Jul 2005 15:52:05 -0000	1.14
@@ -14,7 +14,7 @@
 This file can also be run as a script to install or upgrade setuptools.
 """
 
-DEFAULT_VERSION = "0.5a7"
+DEFAULT_VERSION = "0.5a8"
 DEFAULT_URL     = "http://www.python.org/packages/source/s/setuptools/"
 
 import sys, os

Index: setup.py
===================================================================
RCS file: /cvsroot/python/python/nondist/sandbox/setuptools/setup.py,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -d -r1.22 -r1.23
--- setup.py	8 Jul 2005 15:13:14 -0000	1.22
+++ setup.py	8 Jul 2005 15:52:05 -0000	1.23
@@ -15,7 +15,7 @@
     f.close()
     return ''.join(lines)
     
-VERSION = "0.5a7"
+VERSION = "0.5a8"
 
 from setuptools import setup, find_packages, Require
 setup(
@@ -28,7 +28,7 @@
     license="PSF or ZPL",
     long_description = get_description(),
     keywords = "CPAN PyPI distutils eggs package management",
-    url = "http://peak.telecommunity.com/DevCenter/EasyInstall",
+    url = "http://peak.telecommunity.com/DevCenter/setuptools",
     test_suite = 'setuptools.tests.test_suite',
     requires = [
         Require('Distutils','1.0.3','distutils',

Index: setuptools.txt
===================================================================
RCS file: /cvsroot/python/python/nondist/sandbox/setuptools/setuptools.txt,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- setuptools.txt	8 Jul 2005 15:13:14 -0000	1.1
+++ setuptools.txt	8 Jul 2005 15:52:05 -0000	1.2
@@ -63,7 +63,7 @@
 =========================
 
 Windows users can just download and run the `setuptools binary installer for
-Windows <http://peak.telecommunity.com/dist/setuptools-0.5a7.win32.exe>`_.
+Windows <http://peak.telecommunity.com/dist/setuptools-0.5a8.win32.exe>`_.
 All others should just download `ez_setup.py`_ and run it; this will
 download and install the appropriate egg for your Python version.
 
@@ -695,5 +695,5 @@
  * Misc. bug fixes
 
 0.3a1
- Initial release.
+ * Initial release.
 



More information about the Python-checkins mailing list