summaryrefslogtreecommitdiff
path: root/distribute.egg-info
diff options
context:
space:
mode:
authorHanno Schlichting <hanno@hannosch.eu>2009-07-18 12:58:26 +0200
committerHanno Schlichting <hanno@hannosch.eu>2009-07-18 12:58:26 +0200
commit773f54b2eafcda4f72ce1f6bb5b12c3fa0b7a037 (patch)
treefb1d3e68a8aa86911e97696861140ece95cf4c9e /distribute.egg-info
parentaa521c21c89dafcf2a8b55b02284f255976913e1 (diff)
downloadpython-setuptools-git-773f54b2eafcda4f72ce1f6bb5b12c3fa0b7a037.tar.gz
As suggested by PJE, we want to check in the entry_points.txt file. Otherwise pristine setuptools-less Python installations won't be able to run egg_info or test.
--HG-- branch : distribute extra : rebase_source : a3b67582a3a1810c480da65993121fc7b84b5e7f
Diffstat (limited to 'distribute.egg-info')
-rw-r--r--distribute.egg-info/entry_points.txt56
1 files changed, 56 insertions, 0 deletions
diff --git a/distribute.egg-info/entry_points.txt b/distribute.egg-info/entry_points.txt
new file mode 100644
index 00000000..d69118d9
--- /dev/null
+++ b/distribute.egg-info/entry_points.txt
@@ -0,0 +1,56 @@
+[distutils.commands]
+bdist_rpm = setuptools.command.bdist_rpm:bdist_rpm
+rotate = setuptools.command.rotate:rotate
+develop = setuptools.command.develop:develop
+setopt = setuptools.command.setopt:setopt
+build_py = setuptools.command.build_py:build_py
+saveopts = setuptools.command.saveopts:saveopts
+egg_info = setuptools.command.egg_info:egg_info
+register = setuptools.command.register:register
+install_egg_info = setuptools.command.install_egg_info:install_egg_info
+alias = setuptools.command.alias:alias
+easy_install = setuptools.command.easy_install:easy_install
+install_scripts = setuptools.command.install_scripts:install_scripts
+bdist_wininst = setuptools.command.bdist_wininst:bdist_wininst
+bdist_egg = setuptools.command.bdist_egg:bdist_egg
+install = setuptools.command.install:install
+test = setuptools.command.test:test
+install_lib = setuptools.command.install_lib:install_lib
+build_ext = setuptools.command.build_ext:build_ext
+sdist = setuptools.command.sdist:sdist
+
+[egg_info.writers]
+dependency_links.txt = setuptools.command.egg_info:overwrite_arg
+requires.txt = setuptools.command.egg_info:write_requirements
+PKG-INFO = setuptools.command.egg_info:write_pkg_info
+eager_resources.txt = setuptools.command.egg_info:overwrite_arg
+top_level.txt = setuptools.command.egg_info:write_toplevel_names
+namespace_packages.txt = setuptools.command.egg_info:overwrite_arg
+entry_points.txt = setuptools.command.egg_info:write_entries
+depends.txt = setuptools.command.egg_info:warn_depends_obsolete
+
+[console_scripts]
+easy_install = setuptools.command.easy_install:main
+easy_install-2.6 = setuptools.command.easy_install:main
+
+[setuptools.file_finders]
+svn_cvs = setuptools.command.sdist:_default_revctrl
+
+[distutils.setup_keywords]
+dependency_links = setuptools.dist:assert_string_list
+entry_points = setuptools.dist:check_entry_points
+extras_require = setuptools.dist:check_extras
+package_data = setuptools.dist:check_package_data
+install_requires = setuptools.dist:check_requirements
+include_package_data = setuptools.dist:assert_bool
+exclude_package_data = setuptools.dist:check_package_data
+namespace_packages = setuptools.dist:check_nsp
+test_suite = setuptools.dist:check_test_suite
+eager_resources = setuptools.dist:assert_string_list
+zip_safe = setuptools.dist:assert_bool
+test_loader = setuptools.dist:check_importable
+tests_require = setuptools.dist:check_requirements
+
+[setuptools.installation]
+eggsecutable = setuptools.command.easy_install:bootstrap
+