aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPJ Eby <distutils-sig@python.org>2005-09-18 04:02:38 +0000
committerPJ Eby <distutils-sig@python.org>2005-09-18 04:02:38 +0000
commit3adaf85ef1eb6d3df18c58dc5b84dcc248d3e364 (patch)
tree8d7e9cdd0b67976e4a34e4949e039ecb6ccac491
parent673ac23e93f64a287c16a0d0ea45ba9ab9379d2d (diff)
downloadexternal_python_setuptools-3adaf85ef1eb6d3df18c58dc5b84dcc248d3e364.tar.gz
external_python_setuptools-3adaf85ef1eb6d3df18c58dc5b84dcc248d3e364.tar.bz2
external_python_setuptools-3adaf85ef1eb6d3df18c58dc5b84dcc248d3e364.zip
setuptools 0.6a2 release
--HG-- branch : setuptools extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041247
-rwxr-xr-xez_setup.py13
-rwxr-xr-xsetup.py2
-rwxr-xr-xsetuptools.egg-info/entry_points.txt1
-rwxr-xr-xsetuptools.txt3
-rw-r--r--setuptools/__init__.py2
5 files changed, 9 insertions, 12 deletions
diff --git a/ez_setup.py b/ez_setup.py
index ad7c3d44..0f20951d 100755
--- a/ez_setup.py
+++ b/ez_setup.py
@@ -14,7 +14,7 @@ the appropriate options to ``use_setuptools()``.
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 @@ md5_data = {
'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 @@ def _validate_md5(egg_name, data):
return data
-
-
-
def use_setuptools(
version=DEFAULT_VERSION, download_base=DEFAULT_URL, to_dir=os.curdir,
download_delay=15
@@ -187,7 +182,7 @@ def update_md5(filenames):
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:
diff --git a/setup.py b/setup.py
index 10d19795..b9046d86 100755
--- a/setup.py
+++ b/setup.py
@@ -15,7 +15,7 @@ def get_description():
f.close()
return ''.join(lines)
-VERSION = "0.6a1"
+VERSION = "0.6a2"
from setuptools import setup, find_packages
import sys
diff --git a/setuptools.egg-info/entry_points.txt b/setuptools.egg-info/entry_points.txt
index 37a81910..3136631e 100755
--- a/setuptools.egg-info/entry_points.txt
+++ b/setuptools.egg-info/entry_points.txt
@@ -24,7 +24,6 @@ bdist_rpm = setuptools.command.bdist_rpm:bdist_rpm
rotate = setuptools.command.rotate:rotate
develop = setuptools.command.develop:develop
setopt = setuptools.command.setopt:setopt
-build_py = setuptools.command.build_py:build_py
saveopts = setuptools.command.saveopts:saveopts
egg_info = setuptools.command.egg_info:egg_info
upload = setuptools.command.upload:upload
diff --git a/setuptools.txt b/setuptools.txt
index b7166ae4..ec6f443e 100755
--- a/setuptools.txt
+++ b/setuptools.txt
@@ -39,6 +39,9 @@ Feature Highlights:
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)
diff --git a/setuptools/__init__.py b/setuptools/__init__.py
index cb0ccba9..13466621 100644
--- a/setuptools/__init__.py
+++ b/setuptools/__init__.py
@@ -7,7 +7,7 @@ from distutils.core import Command as _Command
from distutils.util import convert_path
import os.path
-__version__ = '0.6a1'
+__version__ = '0.6a2'
__all__ = [
'setup', 'Distribution', 'Feature', 'Command', 'Extension', 'Require',
'find_packages'