summaryrefslogtreecommitdiff
path: root/bin/easy_install
diff options
context:
space:
mode:
Diffstat (limited to 'bin/easy_install')
-rwxr-xr-xbin/easy_install10
1 files changed, 10 insertions, 0 deletions
diff --git a/bin/easy_install b/bin/easy_install
new file mode 100755
index 00000000..eeb31a5c
--- /dev/null
+++ b/bin/easy_install
@@ -0,0 +1,10 @@
+#!/srv/http/web/bin/python2
+# EASY-INSTALL-ENTRY-SCRIPT: 'distribute==0.6.14','console_scripts','easy_install'
+__requires__ = 'distribute==0.6.14'
+import sys
+from pkg_resources import load_entry_point
+
+if __name__ == '__main__':
+ sys.exit(
+ load_entry_point('distribute==0.6.14', 'console_scripts', 'easy_install')()
+ )