summaryrefslogtreecommitdiffstats
path: root/external_libs/python/pyzmq-14.7.0/setupegg.py
diff options
context:
space:
mode:
Diffstat (limited to 'external_libs/python/pyzmq-14.7.0/setupegg.py')
-rw-r--r--external_libs/python/pyzmq-14.7.0/setupegg.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/external_libs/python/pyzmq-14.7.0/setupegg.py b/external_libs/python/pyzmq-14.7.0/setupegg.py
new file mode 100644
index 00000000..a1da2807
--- /dev/null
+++ b/external_libs/python/pyzmq-14.7.0/setupegg.py
@@ -0,0 +1,14 @@
+#!/usr/bin/env python
+"""Wrapper to run setup.py using setuptools."""
+
+import os, sys
+import warnings
+
+warnings.warn("setupegg.py is deprecated. Don't use it anymore, it's a bit silly.")
+
+# now, import setuptools and call the actual setup
+import setuptools
+try:
+ execfile('setup.py')
+except NameError:
+ exec( open('setup.py','rb').read() )