Commit 10a74bb2 authored by Lisandro Dalcin's avatar Lisandro Dalcin

Fix open mode in setupegg.py wrapper script

parent 62066a00
#!/usr/bin/env python
"""Wrapper to run setup.py using setuptools."""
import setuptools
with open('setup.py', 'rb') as f:
with open('setup.py') 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