summaryrefslogtreecommitdiff
path: root/data/setuptools/easy_install
diff options
context:
space:
mode:
Diffstat (limited to 'data/setuptools/easy_install')
-rwxr-xr-xdata/setuptools/easy_install9
1 files changed, 9 insertions, 0 deletions
diff --git a/data/setuptools/easy_install b/data/setuptools/easy_install
new file mode 100755
index 000000000..be9156565
--- /dev/null
+++ b/data/setuptools/easy_install
@@ -0,0 +1,9 @@
+#!/usr/bin/python2.5
+# EASY-INSTALL-ENTRY-SCRIPT: 'setuptools==0.6c7','console_scripts','easy_install'
+__requires__ = 'setuptools==0.6c7'
+import sys
+from pkg_resources import load_entry_point
+
+sys.exit(
+ load_entry_point('setuptools==0.6c7', 'console_scripts', 'easy_install')()
+)