##// END OF EJS Templates
Backport PR #4120: support `input` in Python 2 kernels...
Backport PR #4120: support `input` in Python 2 kernels input is just `eval(raw_input(…))` closes #3990

File last commit:

r2460:e8303d57
r12340:be13e686
Show More
setupegg.py
6 lines | 156 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
execfile('setup.py')