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, 0 insertions, 14 deletions
diff --git a/external_libs/python/pyzmq-14.7.0/setupegg.py b/external_libs/python/pyzmq-14.7.0/setupegg.py
deleted file mode 100644
index a1da2807..00000000
--- a/external_libs/python/pyzmq-14.7.0/setupegg.py
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/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() )