##// END OF EJS Templates
Some propose fixes....
Some propose fixes. I'm not totally happy as things like `0?` now raise a SyntaxError without proper filename and context. Also there is now the fact that transformers can return None to stop all transformations, which I don't like. Closes #11306

File last commit:

r13387:3b4dba0a
r24567:d3bd9b24
Show More
setupegg.py
7 lines | 217 B | text/x-python | PythonLexer
#!/usr/bin/env python
"""Wrapper to run setup.py using setuptools."""
# Import setuptools and call the actual setup
import setuptools
with open('setup.py', 'rb') as f:
exec(compile(f.read(), 'setup.py', 'exec'))