[Python-checkins] python/nondist/sandbox/setuptools ez_setup.py, 1.30, 1.31 setup.py, 1.38, 1.39 setuptools.txt, 1.36, 1.37

pje@users.sourceforge.net pje at users.sourceforge.net
Sun Sep 18 06:02:42 CEST 2005


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

Modified Files:
	ez_setup.py setup.py setuptools.txt 
Log Message:
setuptools 0.6a2 release


Index: ez_setup.py
===================================================================
RCS file: /cvsroot/python/python/nondist/sandbox/setuptools/ez_setup.py,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -d -r1.30 -r1.31
--- ez_setup.py	17 Sep 2005 00:18:37 -0000	1.30
+++ ez_setup.py	18 Sep 2005 04:02:38 -0000	1.31
@@ -14,7 +14,7 @@
 This file can also be run as a script to install or upgrade setuptools.
 """
 import sys
-DEFAULT_VERSION = "0.6a1"
+DEFAULT_VERSION = "0.6a2"
 DEFAULT_URL     = "http://cheeseshop.python.org/packages/%s/s/setuptools/" % sys.version[:3]
 
 md5_data = {
@@ -22,10 +22,8 @@
     'setuptools-0.5a13-py2.4.egg': 'ede4be600e3890e06d4ee5e0148e092a',
     'setuptools-0.6a1-py2.3.egg': 'ee819a13b924d9696b0d6ca6d1c5833d',
     'setuptools-0.6a1-py2.4.egg': '8256b5f1cd9e348ea6877b5ddd56257d',
-    'setuptools-0.6a1c1-py2.3.egg': '1eaf2ca9fb2417977d5b5042dc50e1f4',
-    'setuptools-0.6a1c1-py2.4.egg': '5baad71652b3047756ba1dcbf721b1ee',
-    'setuptools-0.6a1c2-py2.3.egg': '92291ca957044306d96a7b8589c01d87',
-    'setuptools-0.6a1c2-py2.4.egg': '5ae6405341eddb5baf93cd6ab178efb1',
+    'setuptools-0.6a2-py2.3.egg': 'b98da449da411267c37a738f0ab625ba',
+    'setuptools-0.6a2-py2.4.egg': 'be5b88bc30aed63fdefd2683be135c3b',
 }
 
 import sys, os
@@ -43,9 +41,6 @@
     return data    
 
 
-
-
-
 def use_setuptools(
     version=DEFAULT_VERSION, download_base=DEFAULT_URL, to_dir=os.curdir,
     download_delay=15
@@ -187,7 +182,7 @@
 
     import inspect
     srcfile = inspect.getsourcefile(sys.modules[__name__])
-    f = open(srcfile); src = f.read(); f.close()
+    f = open(srcfile, 'rb'); src = f.read(); f.close()
 
     match = re.search("\nmd5_data = {\n([^}]+)}", src)
     if not match:

Index: setup.py
===================================================================
RCS file: /cvsroot/python/python/nondist/sandbox/setuptools/setup.py,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -d -r1.38 -r1.39
--- setup.py	17 Sep 2005 01:13:02 -0000	1.38
+++ setup.py	18 Sep 2005 04:02:38 -0000	1.39
@@ -15,7 +15,7 @@
     f.close()
     return ''.join(lines)
     
-VERSION = "0.6a1"
+VERSION = "0.6a2"
 
 from setuptools import setup, find_packages
 import sys

Index: setuptools.txt
===================================================================
RCS file: /cvsroot/python/python/nondist/sandbox/setuptools/setuptools.txt,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -d -r1.36 -r1.37
--- setuptools.txt	17 Sep 2005 01:13:02 -0000	1.36
+++ setuptools.txt	18 Sep 2005 04:02:38 -0000	1.37
@@ -39,6 +39,9 @@
   without needing to create a ``MANIFEST.in`` file, and without having to force
   regeneration of the ``MANIFEST`` file when your source tree changes.
 
+* Automatically generate wrapper scripts or Windows (console) .exe files for
+  any number of "main" functions in your project.
+
 * Transparent Pyrex support, so that your setup.py can list ``.pyx`` files and
   still work even when the end-user doesn't have Pyrex installed (as long as
   you include the Pyrex-generated C in your source distribution)



More information about the Python-checkins mailing list