Commit 70dc35dc authored by Jason R. Coombs's avatar Jason R. Coombs

Bumped to 0.9 in preparation for next release.

parent 73e47623
...@@ -29,7 +29,7 @@ The recommended way to install setuptools on Windows is to download ...@@ -29,7 +29,7 @@ The recommended way to install setuptools on Windows is to download
`ez_setup.py`_ and run it. The script will download the appropriate .egg `ez_setup.py`_ and run it. The script will download the appropriate .egg
file and install it for you. file and install it for you.
.. _ez_setup.py: https://bitbucket.org/pypa/setuptools/raw/0.8/ez_setup.py .. _ez_setup.py: https://bitbucket.org/pypa/setuptools/raw/0.9/ez_setup.py
For best results, uninstall previous versions FIRST (see `Uninstalling`_). For best results, uninstall previous versions FIRST (see `Uninstalling`_).
...@@ -45,7 +45,7 @@ Unix-based Systems including Mac OS X ...@@ -45,7 +45,7 @@ Unix-based Systems including Mac OS X
Download `ez_setup.py`_ and run it using the target Python version. The script Download `ez_setup.py`_ and run it using the target Python version. The script
will download the appropriate version and install it for you:: will download the appropriate version and install it for you::
> wget https://bitbucket.org/pypa/setuptools/raw/0.8/ez_setup.py -O - | python > wget https://bitbucket.org/pypa/setuptools/raw/0.9/ez_setup.py -O - | python
Note that you will may need to invoke the command with superuser privileges to Note that you will may need to invoke the command with superuser privileges to
install to the system Python. install to the system Python.
...@@ -53,7 +53,7 @@ install to the system Python. ...@@ -53,7 +53,7 @@ install to the system Python.
Alternatively, on Python 2.6 and later, Setuptools may be installed to a Alternatively, on Python 2.6 and later, Setuptools may be installed to a
user-local path:: user-local path::
> wget https://bitbucket.org/pypa/setuptools/raw/0.8/ez_setup.py > wget https://bitbucket.org/pypa/setuptools/raw/0.9/ez_setup.py
> python ez_setup.py --user > python ez_setup.py --user
...@@ -66,7 +66,7 @@ tarball from `Setuptools on PyPI <https://pypi.python.org/pypi/setuptools>`_ ...@@ -66,7 +66,7 @@ tarball from `Setuptools on PyPI <https://pypi.python.org/pypi/setuptools>`_
and run setup.py with any supported distutils and Setuptools options. and run setup.py with any supported distutils and Setuptools options.
For example:: For example::
setuptools-0.8$ python setup.py --prefix=/opt/setuptools setuptools-0.9$ python setup.py --prefix=/opt/setuptools
Use ``--help`` to get a full options list, but we recommend consulting Use ``--help`` to get a full options list, but we recommend consulting
the `EasyInstall manual`_ for detailed instructions, especially `the section the `EasyInstall manual`_ for detailed instructions, especially `the section
......
...@@ -48,9 +48,9 @@ copyright = '2009-2013, The fellowship of the packaging' ...@@ -48,9 +48,9 @@ copyright = '2009-2013, The fellowship of the packaging'
# built documents. # built documents.
# #
# The short X.Y version. # The short X.Y version.
version = '0.8' version = '0.9'
# The full version, including alpha/beta/rc tags. # The full version, including alpha/beta/rc tags.
release = '0.8' release = '0.9'
# The language for content autogenerated by Sphinx. Refer to documentation # The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages. # for a list of supported languages.
......
...@@ -28,7 +28,7 @@ try: ...@@ -28,7 +28,7 @@ try:
except ImportError: except ImportError:
USER_SITE = None USER_SITE = None
DEFAULT_VERSION = "0.8" DEFAULT_VERSION = "0.9"
DEFAULT_URL = "https://pypi.python.org/packages/source/s/setuptools/" DEFAULT_URL = "https://pypi.python.org/packages/source/s/setuptools/"
def _python_cmd(*args): def _python_cmd(*args):
......
...@@ -36,7 +36,7 @@ try: ...@@ -36,7 +36,7 @@ try:
except Exception: except Exception:
pass pass
VERSION = '0.8' VERSION = '0.9'
PACKAGE_INDEX = 'https://pypi.python.org/pypi' PACKAGE_INDEX = 'https://pypi.python.org/pypi'
def set_versions(): def set_versions():
......
...@@ -47,7 +47,7 @@ exec(init_file.read(), d) ...@@ -47,7 +47,7 @@ exec(init_file.read(), d)
init_file.close() init_file.close()
SETUP_COMMANDS = d['__all__'] SETUP_COMMANDS = d['__all__']
VERSION = "0.8" VERSION = "0.9"
from setuptools import setup, find_packages from setuptools import setup, find_packages
from setuptools.command.build_py import build_py as _build_py from setuptools.command.build_py import build_py as _build_py
...@@ -219,10 +219,10 @@ dist = setup( ...@@ -219,10 +219,10 @@ dist = setup(
"ssl:sys_platform=='win32'": "wincertstore==0.1", "ssl:sys_platform=='win32'": "wincertstore==0.1",
"ssl:sys_platform=='win32' and python_version=='2.4'": "ctypes==1.0.2", "ssl:sys_platform=='win32' and python_version=='2.4'": "ctypes==1.0.2",
"ssl:python_version in '2.4, 2.5'":"ssl==1.16", "ssl:python_version in '2.4, 2.5'":"ssl==1.16",
"certs": "certifi==0.0.8", "certs": "certifi==0.0.9",
}, },
dependency_links = [ dependency_links = [
'https://pypi.python.org/packages/source/c/certifi/certifi-0.0.8.tar.gz#md5=dc5f5e7f0b5fc08d27654b17daa6ecec', 'https://pypi.python.org/packages/source/c/certifi/certifi-0.0.9.tar.gz#md5=dc5f5e7f0b5fc08d27654b17daa6ecec',
'https://pypi.python.org/packages/source/s/ssl/ssl-1.16.tar.gz#md5=fb12d335d56f3c8c7c1fefc1c06c4bfb', 'https://pypi.python.org/packages/source/s/ssl/ssl-1.16.tar.gz#md5=fb12d335d56f3c8c7c1fefc1c06c4bfb',
'https://pypi.python.org/packages/source/w/wincertstore/wincertstore-0.1.zip#md5=2f9accbebe8f7b4c06ac7aa83879b81c', 'https://pypi.python.org/packages/source/w/wincertstore/wincertstore-0.1.zip#md5=2f9accbebe8f7b4c06ac7aa83879b81c',
'https://bitbucket.org/pypa/setuptools/downloads/ctypes-1.0.2.win32-py2.4.exe#md5=9092a0ad5a3d79fa2d980f1ddc5e9dbc', 'https://bitbucket.org/pypa/setuptools/downloads/ctypes-1.0.2.win32-py2.4.exe#md5=9092a0ad5a3d79fa2d980f1ddc5e9dbc',
......
[console_scripts]
easy_install-3.3 = setuptools.command.easy_install:main
easy_install = setuptools.command.easy_install:main
[distutils.commands] [distutils.commands]
build_py = setuptools.command.build_py:build_py
install_egg_info = setuptools.command.install_egg_info:install_egg_info
register = setuptools.command.register:register
install_scripts = setuptools.command.install_scripts:install_scripts
alias = setuptools.command.alias:alias
saveopts = setuptools.command.saveopts:saveopts
bdist_rpm = setuptools.command.bdist_rpm:bdist_rpm bdist_rpm = setuptools.command.bdist_rpm:bdist_rpm
install = setuptools.command.install:install bdist_wininst = setuptools.command.bdist_wininst:bdist_wininst
install_lib = setuptools.command.install_lib:install_lib
setopt = setuptools.command.setopt:setopt setopt = setuptools.command.setopt:setopt
easy_install = setuptools.command.easy_install:easy_install
egg_info = setuptools.command.egg_info:egg_info
build_ext = setuptools.command.build_ext:build_ext build_ext = setuptools.command.build_ext:build_ext
build_py = setuptools.command.build_py:build_py
install_scripts = setuptools.command.install_scripts:install_scripts
saveopts = setuptools.command.saveopts:saveopts
alias = setuptools.command.alias:alias
sdist = setuptools.command.sdist:sdist sdist = setuptools.command.sdist:sdist
develop = setuptools.command.develop:develop rotate = setuptools.command.rotate:rotate
bdist_egg = setuptools.command.bdist_egg:bdist_egg
upload_docs = setuptools.command.upload_docs:upload_docs upload_docs = setuptools.command.upload_docs:upload_docs
bdist_wininst = setuptools.command.bdist_wininst:bdist_wininst bdist_egg = setuptools.command.bdist_egg:bdist_egg
install_lib = setuptools.command.install_lib:install_lib egg_info = setuptools.command.egg_info:egg_info
test = setuptools.command.test:test test = setuptools.command.test:test
rotate = setuptools.command.rotate:rotate develop = setuptools.command.develop:develop
install = setuptools.command.install:install
install_egg_info = setuptools.command.install_egg_info:install_egg_info
easy_install = setuptools.command.easy_install:easy_install
register = setuptools.command.register:register
[egg_info.writers] [egg_info.writers]
requires.txt = setuptools.command.egg_info:write_requirements PKG-INFO = setuptools.command.egg_info:write_pkg_info
entry_points.txt = setuptools.command.egg_info:write_entries
depends.txt = setuptools.command.egg_info:warn_depends_obsolete depends.txt = setuptools.command.egg_info:warn_depends_obsolete
dependency_links.txt = setuptools.command.egg_info:overwrite_arg dependency_links.txt = setuptools.command.egg_info:overwrite_arg
namespace_packages.txt = setuptools.command.egg_info:overwrite_arg entry_points.txt = setuptools.command.egg_info:write_entries
eager_resources.txt = setuptools.command.egg_info:overwrite_arg eager_resources.txt = setuptools.command.egg_info:overwrite_arg
PKG-INFO = setuptools.command.egg_info:write_pkg_info
top_level.txt = setuptools.command.egg_info:write_toplevel_names top_level.txt = setuptools.command.egg_info:write_toplevel_names
requires.txt = setuptools.command.egg_info:write_requirements
namespace_packages.txt = setuptools.command.egg_info:overwrite_arg
[setuptools.file_finders] [setuptools.installation]
svn_cvs = setuptools.command.sdist:_default_revctrl eggsecutable = setuptools.command.easy_install:bootstrap
[distutils.setup_keywords] [distutils.setup_keywords]
use_2to3_fixers = setuptools.dist:assert_string_list
convert_2to3_doctests = setuptools.dist:assert_string_list
test_loader = setuptools.dist:check_importable
tests_require = setuptools.dist:check_requirements
entry_points = setuptools.dist:check_entry_points
zip_safe = setuptools.dist:assert_bool
include_package_data = setuptools.dist:assert_bool include_package_data = setuptools.dist:assert_bool
packages = setuptools.dist:check_packages zip_safe = setuptools.dist:assert_bool
use_2to3 = setuptools.dist:assert_bool
eager_resources = setuptools.dist:assert_string_list eager_resources = setuptools.dist:assert_string_list
convert_2to3_doctests = setuptools.dist:assert_string_list
install_requires = setuptools.dist:check_requirements install_requires = setuptools.dist:check_requirements
exclude_package_data = setuptools.dist:check_package_data test_loader = setuptools.dist:check_importable
extras_require = setuptools.dist:check_extras extras_require = setuptools.dist:check_extras
test_suite = setuptools.dist:check_test_suite exclude_package_data = setuptools.dist:check_package_data
use_2to3_exclude_fixers = setuptools.dist:assert_string_list use_2to3_exclude_fixers = setuptools.dist:assert_string_list
dependency_links = setuptools.dist:assert_string_list dependency_links = setuptools.dist:assert_string_list
entry_points = setuptools.dist:check_entry_points
package_data = setuptools.dist:check_package_data package_data = setuptools.dist:check_package_data
use_2to3 = setuptools.dist:assert_bool use_2to3_fixers = setuptools.dist:assert_string_list
tests_require = setuptools.dist:check_requirements
packages = setuptools.dist:check_packages
namespace_packages = setuptools.dist:check_nsp namespace_packages = setuptools.dist:check_nsp
test_suite = setuptools.dist:check_test_suite
[console_scripts] [setuptools.file_finders]
easy_install = setuptools.command.easy_install:main svn_cvs = setuptools.command.sdist:_default_revctrl
easy_install-3.3 = setuptools.command.easy_install:main
[setuptools.installation]
eggsecutable = setuptools.command.easy_install:bootstrap
...@@ -3,11 +3,11 @@ ...@@ -3,11 +3,11 @@
[certs] [certs]
certifi==0.0.8 certifi==0.0.8
[ssl:sys_platform=='win32']
wincertstore==0.1
[ssl:python_version in '2.4, 2.5'] [ssl:python_version in '2.4, 2.5']
ssl==1.16 ssl==1.16
[ssl:sys_platform=='win32']
wincertstore==0.1
[ssl:sys_platform=='win32' and python_version=='2.4'] [ssl:sys_platform=='win32' and python_version=='2.4']
ctypes==1.0.2 ctypes==1.0.2
\ No newline at end of file
...@@ -8,7 +8,7 @@ from distutils.util import convert_path ...@@ -8,7 +8,7 @@ from distutils.util import convert_path
import os import os
import sys import sys
__version__ = '0.8' __version__ = '0.9'
__all__ = [ __all__ = [
'setup', 'Distribution', 'Feature', 'Command', 'Extension', 'Require', 'setup', 'Distribution', 'Feature', 'Command', 'Extension', 'Require',
'find_packages' 'find_packages'
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment