diff options
| author | PJ Eby <distutils-sig@python.org> | 2005-09-17 01:13:02 +0000 |
|---|---|---|
| committer | PJ Eby <distutils-sig@python.org> | 2005-09-17 01:13:02 +0000 |
| commit | 673ac23e93f64a287c16a0d0ea45ba9ab9379d2d (patch) | |
| tree | b9aa9ca6d2049ccb783d15d7aa1d72826655e399 /setuptools.egg-info | |
| parent | baad93e3fb9e3275fec745eb0383a212e6042dbe (diff) | |
| download | external_python_setuptools-673ac23e93f64a287c16a0d0ea45ba9ab9379d2d.tar.gz external_python_setuptools-673ac23e93f64a287c16a0d0ea45ba9ab9379d2d.tar.bz2 external_python_setuptools-673ac23e93f64a287c16a0d0ea45ba9ab9379d2d.zip | |
Added support to solve the infamous "we want .py on Windows, no
extension elsewhere" problem, while also bypassing the need for PATHEXT
on Windows, and in fact the need to even write script files at all, for
any platform. Instead, you define "entry points" in your setup script,
in this case the names of the scripts you want (without extensions) and
the functions that should be imported and run to implement the scripts.
Setuptools will then generate platform-appropriate script files at
install time, including an .exe wrapper when installing on Windows.
--HG--
branch : setuptools
extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041246
Diffstat (limited to 'setuptools.egg-info')
| -rwxr-xr-x | setuptools.egg-info/entry_points.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/setuptools.egg-info/entry_points.txt b/setuptools.egg-info/entry_points.txt index 235330f4..37a81910 100755 --- a/setuptools.egg-info/entry_points.txt +++ b/setuptools.egg-info/entry_points.txt @@ -16,11 +16,15 @@ 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 +[console_scripts] +easy_install = setuptools.command.easy_install:main + [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 upload = setuptools.command.upload:upload |
