diff options
| author | PJ Eby <distutils-sig@python.org> | 2005-08-06 18:46:28 +0000 |
|---|---|---|
| committer | PJ Eby <distutils-sig@python.org> | 2005-08-06 18:46:28 +0000 |
| commit | 8a29467d941a7983d5f6eadc5c0e1624417944b6 (patch) | |
| tree | b270afe3a01c9bead94060de3c3adfa590bd933f /setuptools.egg-info | |
| parent | a762d97ea517f64a405d82ad7acaa85d3eb30c39 (diff) | |
| download | external_python_setuptools-8a29467d941a7983d5f6eadc5c0e1624417944b6.tar.gz external_python_setuptools-8a29467d941a7983d5f6eadc5c0e1624417944b6.tar.bz2 external_python_setuptools-8a29467d941a7983d5f6eadc5c0e1624417944b6.zip | |
Enhanced setuptools infrastructure to support distutils extensions that
can be plugged in at setup() time to define new setup() arguments or
distutils commands. This allows modularization and reuse of distutils
extensions in a way that was previously not possible.
--HG--
branch : setuptools
extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041180
Diffstat (limited to 'setuptools.egg-info')
| -rwxr-xr-x | setuptools.egg-info/entry_points.txt | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/setuptools.egg-info/entry_points.txt b/setuptools.egg-info/entry_points.txt index 8baf6137..def14fac 100755 --- a/setuptools.egg-info/entry_points.txt +++ b/setuptools.egg-info/entry_points.txt @@ -1,13 +1,22 @@ +[distutils.setup_keywords] +entry_points = setuptools.dist:check_entry_points +extras_require = setuptools.dist:check_extras +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 + [distutils.commands] 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 -depends = setuptools.command.depends:depends +easy_install = setuptools.command.easy_install:easy_install upload = setuptools.command.upload:upload alias = setuptools.command.alias:alias -easy_install = setuptools.command.easy_install:easy_install +depends = setuptools.command.depends:depends bdist_egg = setuptools.command.bdist_egg:bdist_egg install = setuptools.command.install:install test = setuptools.command.test:test |
