Commit b517d0c1 authored by Lisandro Dalcin's avatar Lisandro Dalcin

Update setupegg.py to Python 3

parent b543eab8
#!/usr/bin/env python
"""Wrapper to run setup.py using setuptools."""
import setuptools
execfile('setup.py')
with open('setup.py', 'rb') as f:
exec(compile(f.read(), 'setup.py', 'exec'))
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment