~ubuntu-branches/ubuntu/raring/pyzmq/raring-proposed

1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/env python
"""Wrapper to run setup.py using setuptools."""

import os, sys

# now, import setuptools and call the actual setup
import setuptools
try:
    execfile('setup.py')
except NameError:
    exec( open('setup.py','rb').read() )