[svn r21192] fix entry point

This commit is contained in:
Ian Bicking 2008-11-04 01:11:40 -06:00
parent b6da69659b
commit 5c7b318f88
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ The main website for pip is `pip.openplans.org
long_description = long_description + open(index_filename).read().split('split here', 1)[1]
if sys.platform == 'win32':
kw = dict(entry_points=dict(console_scripts=['pip:pip:main']))
kw = dict(entry_points=dict(console_scripts=['pip=pip:main']))
else:
kw = dict(scripts=['scripts/pip'])