##// END OF EJS Templates
zmqterminal subclasses TerminalInteractiveShell/IPApp...
zmqterminal subclasses TerminalInteractiveShell/IPApp this does a lot of the boiler plate for us, so Omar's communication code is used in place of run_cell / complete. Now colors, prompts, indentation, cl-args, etc. are all inherited from regular existing code. keyboard interrupts don't work yet, the kernel just dies...

File last commit:

r2460:e8303d57
r5600:8360d3a9
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')