##// END OF EJS Templates
Fixing how the working directory is handled in kernel....
Fixing how the working directory is handled in kernel. * Changed working_dir -> work_dir. * Now, ipcluster does not try to set the work dir for the controller and engine. To set it, just use the engine/controller config or pass the command line arg to the engine_args/controller_args attribute of a launcher.

File last commit:

r2119:2c8c96be
r2336:86c5a33d
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')