diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2013-07-13 22:03:28 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2013-07-13 22:03:28 -0400 |
commit | bbd4994b81eefd1a652f3fa9dca7d6e93107b392 (patch) | |
tree | 924fb106a099910b691353ac45f54d9466f0cb6c | |
parent | 6b915734dcc4cdeaaaa6e03ac9aca1c9279e528f (diff) | |
download | external_python_setuptools-bbd4994b81eefd1a652f3fa9dca7d6e93107b392.tar.gz external_python_setuptools-bbd4994b81eefd1a652f3fa9dca7d6e93107b392.tar.bz2 external_python_setuptools-bbd4994b81eefd1a652f3fa9dca7d6e93107b392.zip |
Bumped to 0.9.2 in preparation for next release.
-rw-r--r-- | ez_setup.py | 2 | ||||
-rw-r--r-- | setuptools.egg-info/entry_points.txt | 102 | ||||
-rw-r--r-- | setuptools.egg-info/requires.txt | 8 | ||||
-rw-r--r-- | setuptools/__init__.py | 2 |
4 files changed, 57 insertions, 57 deletions
diff --git a/ez_setup.py b/ez_setup.py index 0b11f1a7..f90a2b9a 100644 --- a/ez_setup.py +++ b/ez_setup.py @@ -28,7 +28,7 @@ try: except ImportError: USER_SITE = None -DEFAULT_VERSION = "0.9.1" +DEFAULT_VERSION = "0.9.2" DEFAULT_URL = "https://pypi.python.org/packages/source/s/setuptools/" def _python_cmd(*args): diff --git a/setuptools.egg-info/entry_points.txt b/setuptools.egg-info/entry_points.txt index 6a9cb799..b804cc29 100644 --- a/setuptools.egg-info/entry_points.txt +++ b/setuptools.egg-info/entry_points.txt @@ -1,62 +1,62 @@ -[distutils.commands] -install_scripts = setuptools.command.install_scripts:install_scripts -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 +[setuptools.installation] +eggsecutable = setuptools.command.easy_install:bootstrap -[console_scripts] -easy_install = setuptools.command.easy_install:main -easy_install-3.3 = setuptools.command.easy_install:main +[egg_info.writers] +depends.txt = setuptools.command.egg_info:warn_depends_obsolete +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] -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 -package_data = setuptools.dist:check_package_data -entry_points = setuptools.dist:check_entry_points +install_requires = setuptools.dist:check_requirements zip_safe = setuptools.dist:assert_bool -exclude_package_data = setuptools.dist:check_package_data -include_package_data = setuptools.dist:assert_bool -test_suite = setuptools.dist:check_test_suite +extras_require = setuptools.dist:check_extras +entry_points = setuptools.dist:check_entry_points +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 -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 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] -svn_cvs = setuptools.command.sdist:_default_revctrl - -[setuptools.installation] -eggsecutable = setuptools.command.easy_install:bootstrap +[distutils.commands] +build_ext = setuptools.command.build_ext:build_ext +saveopts = setuptools.command.saveopts:saveopts +rotate = setuptools.command.rotate:rotate +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] -dependency_links.txt = setuptools.command.egg_info:overwrite_arg -namespace_packages.txt = setuptools.command.egg_info:overwrite_arg -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 +[console_scripts] +easy_install-3.3 = setuptools.command.easy_install:main +easy_install = setuptools.command.easy_install:main diff --git a/setuptools.egg-info/requires.txt b/setuptools.egg-info/requires.txt index dac9e411..e7f0f3b8 100644 --- a/setuptools.egg-info/requires.txt +++ b/setuptools.egg-info/requires.txt @@ -1,8 +1,5 @@ -[ssl:sys_platform=='win32' and python_version=='2.4'] -ctypes==1.0.2 - [ssl:sys_platform=='win32'] wincertstore==0.1 @@ -10,4 +7,7 @@ wincertstore==0.1 ssl==1.16 [certs] -certifi==0.0.8
\ No newline at end of file +certifi==0.0.8 + +[ssl:sys_platform=='win32' and python_version=='2.4'] +ctypes==1.0.2
\ No newline at end of file diff --git a/setuptools/__init__.py b/setuptools/__init__.py index 7da5a3bd..e698bb4e 100644 --- a/setuptools/__init__.py +++ b/setuptools/__init__.py @@ -8,7 +8,7 @@ from distutils.util import convert_path import os import sys -__version__ = '0.9.1' +__version__ = '0.9.2' __all__ = [ 'setup', 'Distribution', 'Feature', 'Command', 'Extension', 'Require', 'find_packages' |