##// END OF EJS Templates
Added SingletonConfigurable with instance method....
Added SingletonConfigurable with instance method. I have added a singleton configurable class for objects that should have only a single instance, such as InteractiveShell and the main application objects. For these classes the .instance() method should be used to create/retrieve the instance.

File last commit:

r2460:e8303d57
r3792:a8f1082e
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')