##// END OF EJS Templates
allow IPython to run without writable home dir...
allow IPython to run without writable home dir get_ipython_dir() ensures that the *IPython* dir is writable, which is more relevant, but the home dir need not be writable. Some optional behaviors (e.g. `%logstart global`) will not work if the home dir is not writable, but IPython should not crash. Approximately no other operations actually depend on writing directly to $HOME.

File last commit:

r2460:e8303d57
r5384:db42b5f7
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')