summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xEasyInstall.txt4
-rwxr-xr-xez_setup.py2
-rwxr-xr-xsetup.py4
-rwxr-xr-xsetuptools.txt4
-rw-r--r--setuptools/__init__.py2
5 files changed, 9 insertions, 7 deletions
diff --git a/EasyInstall.txt b/EasyInstall.txt
index 91d2e5c3..435ead05 100755
--- a/EasyInstall.txt
+++ b/EasyInstall.txt
@@ -29,7 +29,7 @@ Installing "Easy Install"
-------------------------
Windows users can just download and run the `setuptools binary installer for
-Windows <http://peak.telecommunity.com/dist/setuptools-0.5a8.win32.exe>`_.
+Windows <http://peak.telecommunity.com/dist/setuptools-0.5a9.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
@@ -70,7 +70,7 @@ version, and automatically downloading, building, and installing it::
**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.5a8"
+ easy_install -f http://peak.telecommunity.com/dist "setuptools>=0.5a9"
**Example 3**. Download a source distribution from a specified URL,
automatically building and installing it::
diff --git a/ez_setup.py b/ez_setup.py
index 0b240bd7..01a10711 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.
"""
-DEFAULT_VERSION = "0.5a8"
+DEFAULT_VERSION = "0.5a9"
DEFAULT_URL = "http://www.python.org/packages/source/s/setuptools/"
import sys, os
diff --git a/setup.py b/setup.py
index c41ec57c..71c0e846 100755
--- a/setup.py
+++ b/setup.py
@@ -15,7 +15,7 @@ def get_description():
f.close()
return ''.join(lines)
-VERSION = "0.5a8"
+VERSION = "0.5a9"
from setuptools import setup, find_packages
@@ -35,7 +35,7 @@ setup(
packages = find_packages(),
py_modules = ['pkg_resources'],
scripts = ['easy_install.py'],
-
+ zip_safe = True,
diff --git a/setuptools.txt b/setuptools.txt
index 83483fac..12bd0386 100755
--- a/setuptools.txt
+++ b/setuptools.txt
@@ -64,7 +64,7 @@ Installing ``setuptools``
=========================
Windows users can just download and run the `setuptools binary installer for
-Windows <http://peak.telecommunity.com/dist/setuptools-0.5a8.win32.exe>`_.
+Windows <http://peak.telecommunity.com/dist/setuptools-0.5a9.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.
@@ -1053,6 +1053,8 @@ the project's source directory or metadata should get it from this setting:
no ``package_dir`` set, this option defaults to the current directory.
+.. _rotate:
+
``rotate`` - Delete outdated distribution files
===============================================
diff --git a/setuptools/__init__.py b/setuptools/__init__.py
index 258d9f50..c299790a 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.5a8'
+__version__ = '0.5a9'
__all__ = [
'setup', 'Distribution', 'Feature', 'Command', 'Extension', 'Require',
'find_packages'