diff options
| author | PJ Eby <distutils-sig@python.org> | 2005-07-24 22:47:06 +0000 |
|---|---|---|
| committer | PJ Eby <distutils-sig@python.org> | 2005-07-24 22:47:06 +0000 |
| commit | 1c40632b88d76aea178e751483645ec3d32c81d9 (patch) | |
| tree | 2cc3fa1af58200d5199b30771053c527ef91bd93 /setuptools.egg-info | |
| parent | 8618cfa8ac93431ffcede4f3987b559449bbbcb8 (diff) | |
| download | external_python_setuptools-1c40632b88d76aea178e751483645ec3d32c81d9.tar.gz external_python_setuptools-1c40632b88d76aea178e751483645ec3d32c81d9.tar.bz2 external_python_setuptools-1c40632b88d76aea178e751483645ec3d32c81d9.zip | |
Implement "entry points" for dynamic discovery of drivers and plugins.
Change setuptools to discover setup commands using an entry point group
called "distutils.commands". Thanks to Ian Bicking for the suggestion that
led to designing this super-cool feature.
--HG--
branch : setuptools
extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041152
Diffstat (limited to 'setuptools.egg-info')
| -rwxr-xr-x | setuptools.egg-info/entry_points.txt | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/setuptools.egg-info/entry_points.txt b/setuptools.egg-info/entry_points.txt new file mode 100755 index 00000000..8baf6137 --- /dev/null +++ b/setuptools.egg-info/entry_points.txt @@ -0,0 +1,17 @@ +[distutils.commands] +rotate = setuptools.command.rotate:rotate +develop = setuptools.command.develop:develop +setopt = setuptools.command.setopt:setopt +saveopts = setuptools.command.saveopts:saveopts +egg_info = setuptools.command.egg_info:egg_info +depends = setuptools.command.depends:depends +upload = setuptools.command.upload:upload +alias = setuptools.command.alias:alias +easy_install = setuptools.command.easy_install:easy_install +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 + |
