##// END OF EJS Templates
Complete reorganization of InteractiveShell....
Complete reorganization of InteractiveShell. I have created a new subclass of InteractiveShell for the old terminal frontend. All frontendy type things have been moved to this subclass.

File last commit:

r2460:e8303d57
r2761:7b6e19f0
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')