aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPJ Eby <distutils-sig@python.org>2005-09-24 21:40:59 +0000
committerPJ Eby <distutils-sig@python.org>2005-09-24 21:40:59 +0000
commit20e9f30cb2de19a4d4cdc1aa53e07efc9c34bcb0 (patch)
tree1e5702825757881261854bb032e67abd11dab883
parentad0eebab218118fa07e314032bd4097c44fc7eb2 (diff)
downloadexternal_python_setuptools-20e9f30cb2de19a4d4cdc1aa53e07efc9c34bcb0.tar.gz
external_python_setuptools-20e9f30cb2de19a4d4cdc1aa53e07efc9c34bcb0.tar.bz2
external_python_setuptools-20e9f30cb2de19a4d4cdc1aa53e07efc9c34bcb0.zip
0.6a3 release.
--HG-- branch : setuptools extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041255
-rwxr-xr-xez_setup.py4
-rwxr-xr-xsetup.py2
-rwxr-xr-xsetuptools.txt2
-rw-r--r--setuptools/__init__.py3
4 files changed, 8 insertions, 3 deletions
diff --git a/ez_setup.py b/ez_setup.py
index 0f20951d..50b6fe9f 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.6a2"
+DEFAULT_VERSION = "0.6a3"
DEFAULT_URL = "http://cheeseshop.python.org/packages/%s/s/setuptools/" % sys.version[:3]
md5_data = {
@@ -24,6 +24,8 @@ md5_data = {
'setuptools-0.6a1-py2.4.egg': '8256b5f1cd9e348ea6877b5ddd56257d',
'setuptools-0.6a2-py2.3.egg': 'b98da449da411267c37a738f0ab625ba',
'setuptools-0.6a2-py2.4.egg': 'be5b88bc30aed63fdefd2683be135c3b',
+ 'setuptools-0.6a3-py2.3.egg': 'ee0e325de78f23aab79d33106dc2a8c8',
+ 'setuptools-0.6a3-py2.4.egg': 'd95453d525a456d6c23e7a5eea89a063',
}
import sys, os
diff --git a/setup.py b/setup.py
index cf9373e1..f9f0005b 100755
--- a/setup.py
+++ b/setup.py
@@ -15,7 +15,7 @@ def get_description():
f.close()
return ''.join(lines)
-VERSION = "0.6a2"
+VERSION = "0.6a3"
from setuptools import setup, find_packages
import sys
from setuptools.command import __all__ as SETUP_COMMANDS
diff --git a/setuptools.txt b/setuptools.txt
index 264058a2..6884d89d 100755
--- a/setuptools.txt
+++ b/setuptools.txt
@@ -1610,6 +1610,8 @@ available:
provide a ``--test-suite`` option, an error will occur.
+.. _upload:
+
``upload`` - Upload source and/or egg distributions to PyPI
===========================================================
diff --git a/setuptools/__init__.py b/setuptools/__init__.py
index 13466621..0c790dca 100644
--- a/setuptools/__init__.py
+++ b/setuptools/__init__.py
@@ -1,3 +1,4 @@
+
"""Extensions to the 'distutils' for large or complex distributions"""
from setuptools.dist import Distribution, Feature, _get_unpatched
import distutils.core, setuptools.command
@@ -7,7 +8,7 @@ from distutils.core import Command as _Command
from distutils.util import convert_path
import os.path
-__version__ = '0.6a2'
+__version__ = '0.6a3'
__all__ = [
'setup', 'Distribution', 'Feature', 'Command', 'Extension', 'Require',
'find_packages'