##// END OF EJS Templates
Move “Using existing profile dir” from info to debug:...
Move “Using existing profile dir” from info to debug: Jessica B. Hamrick said: > It’s kind of annoying that it prints out every single time > I guess it’s not so bad when you’re just running the notebook > But for nbconvert you see it a lot

File last commit:

r13387:3b4dba0a
r20725:f9738aa8
Show More
setupegg.py
7 lines | 217 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
with open('setup.py', 'rb') as f:
exec(compile(f.read(), 'setup.py', 'exec'))