##// END OF EJS Templates
Added a Qt4 simple example to test %gui functionality....
Added a Qt4 simple example to test %gui functionality. This is put in examples/ and not as a test because it requires manual interaction and opens windows, but this way we can test it at least manually during development. Next we'll add similar ones for the other toolkits.

File last commit:

r2119:2c8c96be
r2211:b18f4aa3
Show More
setupegg.py
12 lines | 297 B | text/x-python | PythonLexer
#!/usr/bin/env python
"""Wrapper to run setup.py using setuptools."""
import sys
# now, import setuptools and call the actual setup
import setuptools
execfile('setup.py')
# clean up the junk left around by setuptools
if "develop" not in sys.argv:
os.system('rm -rf ipython.egg-info build')