##// END OF EJS Templates
add config file inheritance to kernelapp...
add config file inheritance to kernelapp Add KernelApp.parent_appname configurable, which sets the default config file. Frontends should specify this in the arguments they pass to kernels they start. closes gh-544

File last commit:

r2460:e8303d57
r4118:e147141c
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')