From 5c7b318f88367896e7c481460f12ac71f561fd67 Mon Sep 17 00:00:00 2001 From: Ian Bicking Date: Tue, 4 Nov 2008 01:11:40 -0600 Subject: [PATCH] [svn r21192] fix entry point --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 10c9106d8..89f8d08ac 100644 --- a/setup.py +++ b/setup.py @@ -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'])