Commit bbd4994b authored by Jason R. Coombs's avatar Jason R. Coombs

Bumped to 0.9.2 in preparation for next release.

parent 6b915734
...@@ -28,7 +28,7 @@ try: ...@@ -28,7 +28,7 @@ try:
except ImportError: except ImportError:
USER_SITE = None USER_SITE = None
DEFAULT_VERSION = "0.9.1" DEFAULT_VERSION = "0.9.2"
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):
......
[distutils.commands] [setuptools.installation]
install_scripts = setuptools.command.install_scripts:install_scripts eggsecutable = setuptools.command.easy_install:bootstrap
install_lib = setuptools.command.install_lib:install_lib
install_egg_info = setuptools.command.install_egg_info:install_egg_info
bdist_wininst = setuptools.command.bdist_wininst:bdist_wininst
bdist_egg = setuptools.command.bdist_egg:bdist_egg
register = setuptools.command.register:register
easy_install = setuptools.command.easy_install:easy_install
bdist_rpm = setuptools.command.bdist_rpm:bdist_rpm
test = setuptools.command.test:test
install = setuptools.command.install:install
build_ext = setuptools.command.build_ext:build_ext
develop = setuptools.command.develop:develop
egg_info = setuptools.command.egg_info:egg_info
upload_docs = setuptools.command.upload_docs:upload_docs
saveopts = setuptools.command.saveopts:saveopts
setopt = setuptools.command.setopt:setopt
sdist = setuptools.command.sdist:sdist
rotate = setuptools.command.rotate:rotate
alias = setuptools.command.alias:alias
build_py = setuptools.command.build_py:build_py
[console_scripts] [egg_info.writers]
easy_install = setuptools.command.easy_install:main depends.txt = setuptools.command.egg_info:warn_depends_obsolete
easy_install-3.3 = setuptools.command.easy_install:main top_level.txt = setuptools.command.egg_info:write_toplevel_names
PKG-INFO = setuptools.command.egg_info:write_pkg_info
eager_resources.txt = setuptools.command.egg_info:overwrite_arg
dependency_links.txt = setuptools.command.egg_info:overwrite_arg
entry_points.txt = setuptools.command.egg_info:write_entries
namespace_packages.txt = setuptools.command.egg_info:overwrite_arg
requires.txt = setuptools.command.egg_info:write_requirements
[setuptools.file_finders]
svn_cvs = setuptools.command.sdist:_default_revctrl
[distutils.setup_keywords] [distutils.setup_keywords]
convert_2to3_doctests = setuptools.dist:assert_string_list
dependency_links = setuptools.dist:assert_string_list
test_loader = setuptools.dist:check_importable
extras_require = setuptools.dist:check_extras
install_requires = setuptools.dist:check_requirements
use_2to3_fixers = setuptools.dist:assert_string_list
use_2to3_exclude_fixers = setuptools.dist:assert_string_list
eager_resources = setuptools.dist:assert_string_list eager_resources = setuptools.dist:assert_string_list
package_data = setuptools.dist:check_package_data install_requires = setuptools.dist:check_requirements
entry_points = setuptools.dist:check_entry_points
zip_safe = setuptools.dist:assert_bool zip_safe = setuptools.dist:assert_bool
exclude_package_data = setuptools.dist:check_package_data extras_require = setuptools.dist:check_extras
include_package_data = setuptools.dist:assert_bool entry_points = setuptools.dist:check_entry_points
test_suite = setuptools.dist:check_test_suite test_loader = setuptools.dist:check_importable
use_2to3_fixers = setuptools.dist:assert_string_list
convert_2to3_doctests = setuptools.dist:assert_string_list
namespace_packages = setuptools.dist:check_nsp namespace_packages = setuptools.dist:check_nsp
tests_require = setuptools.dist:check_requirements test_suite = setuptools.dist:check_test_suite
include_package_data = setuptools.dist:assert_bool
exclude_package_data = setuptools.dist:check_package_data
dependency_links = setuptools.dist:assert_string_list
packages = setuptools.dist:check_packages packages = setuptools.dist:check_packages
use_2to3 = setuptools.dist:assert_bool use_2to3 = setuptools.dist:assert_bool
tests_require = setuptools.dist:check_requirements
package_data = setuptools.dist:check_package_data
use_2to3_exclude_fixers = setuptools.dist:assert_string_list
[setuptools.file_finders] [distutils.commands]
svn_cvs = setuptools.command.sdist:_default_revctrl build_ext = setuptools.command.build_ext:build_ext
saveopts = setuptools.command.saveopts:saveopts
[setuptools.installation] rotate = setuptools.command.rotate:rotate
eggsecutable = setuptools.command.easy_install:bootstrap upload_docs = setuptools.command.upload_docs:upload_docs
build_py = setuptools.command.build_py:build_py
develop = setuptools.command.develop:develop
install_lib = setuptools.command.install_lib:install_lib
alias = setuptools.command.alias:alias
bdist_wininst = setuptools.command.bdist_wininst:bdist_wininst
sdist = setuptools.command.sdist:sdist
bdist_rpm = setuptools.command.bdist_rpm:bdist_rpm
install_egg_info = setuptools.command.install_egg_info:install_egg_info
egg_info = setuptools.command.egg_info:egg_info
setopt = setuptools.command.setopt:setopt
bdist_egg = setuptools.command.bdist_egg:bdist_egg
install_scripts = setuptools.command.install_scripts:install_scripts
install = setuptools.command.install:install
test = setuptools.command.test:test
register = setuptools.command.register:register
easy_install = setuptools.command.easy_install:easy_install
[egg_info.writers] [console_scripts]
dependency_links.txt = setuptools.command.egg_info:overwrite_arg easy_install-3.3 = setuptools.command.easy_install:main
namespace_packages.txt = setuptools.command.egg_info:overwrite_arg easy_install = setuptools.command.easy_install:main
depends.txt = setuptools.command.egg_info:warn_depends_obsolete
PKG-INFO = setuptools.command.egg_info:write_pkg_info
eager_resources.txt = setuptools.command.egg_info:overwrite_arg
requires.txt = setuptools.command.egg_info:write_requirements
top_level.txt = setuptools.command.egg_info:write_toplevel_names
entry_points.txt = setuptools.command.egg_info:write_entries
[ssl:sys_platform=='win32' and python_version=='2.4']
ctypes==1.0.2
[ssl:sys_platform=='win32'] [ssl:sys_platform=='win32']
wincertstore==0.1 wincertstore==0.1
...@@ -11,3 +8,6 @@ ssl==1.16 ...@@ -11,3 +8,6 @@ ssl==1.16
[certs] [certs]
certifi==0.0.8 certifi==0.0.8
[ssl:sys_platform=='win32' and python_version=='2.4']
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.9.1' __version__ = '0.9.2'
__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