diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2010-12-27 22:36:35 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2010-12-27 22:36:35 +0000 |
commit | d8fe78f471f2b7821a99f7c2697e0e2ab0a374c1 (patch) | |
tree | 69422d8e98375d8c4622071fb20e76b3bffa638b /bin/pip | |
parent | 131023868a582158a4ac461dc2516e19a7fb27c6 (diff) |
Various changes, plus licenses are now pointing to the real licenses. (gtklocker)
Diffstat (limited to 'bin/pip')
-rwxr-xr-x | bin/pip | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/bin/pip b/bin/pip new file mode 100755 index 00000000..2d851f27 --- /dev/null +++ b/bin/pip @@ -0,0 +1,10 @@ +#!/srv/http/web/bin/python2 +# EASY-INSTALL-ENTRY-SCRIPT: 'pip==0.8.1','console_scripts','pip' +__requires__ = 'pip==0.8.1' +import sys +from pkg_resources import load_entry_point + +if __name__ == '__main__': + sys.exit( + load_entry_point('pip==0.8.1', 'console_scripts', 'pip')() + ) |