diff options
| author | PJ Eby <distutils-sig@python.org> | 2005-08-06 21:17:50 +0000 |
|---|---|---|
| committer | PJ Eby <distutils-sig@python.org> | 2005-08-06 21:17:50 +0000 |
| commit | 899e59ff5150705852f15f90fddbfedf7544bec1 (patch) | |
| tree | 6c0693cd07cf85f30fcab3f7c4d73610ebb5346e /setuptools.egg-info/entry_points.txt | |
| parent | 568f7f51fb0dea510cfae83b178c642a06b801bd (diff) | |
| download | python-setuptools-git-899e59ff5150705852f15f90fddbfedf7544bec1.tar.gz | |
Allow distutils extensions to define new kinds of metadata that can be
written to EGG-INFO. Extensible applications and frameworks can thus make
it possible for plugin projects to supply setup() metadata that can then
be used by the application or framework.
--HG--
branch : setuptools
extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041183
Diffstat (limited to 'setuptools.egg-info/entry_points.txt')
| -rwxr-xr-x | setuptools.egg-info/entry_points.txt | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/setuptools.egg-info/entry_points.txt b/setuptools.egg-info/entry_points.txt index 82f0990e..c6b3f595 100755 --- a/setuptools.egg-info/entry_points.txt +++ b/setuptools.egg-info/entry_points.txt @@ -1,11 +1,21 @@ [distutils.setup_keywords] entry_points = setuptools.dist:check_entry_points extras_require = setuptools.dist:check_extras +install_requires = setuptools.dist:check_install_requires 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 +[egg_info.writers] +requires.txt = setuptools.command.egg_info:write_requirements +PKG-INFO = setuptools.command.egg_info:write_pkg_info +eager_resources.txt = setuptools.command.egg_info:write_arg +top_level.txt = setuptools.command.egg_info:write_toplevel_names +namespace_packages.txt = setuptools.command.egg_info:write_arg +entry_points.txt = setuptools.command.egg_info:write_entries +depends.txt = setuptools.command.egg_info:warn_depends_obsolete + [distutils.commands] rotate = setuptools.command.rotate:rotate develop = setuptools.command.develop:develop |
