##// END OF EJS Templates
Partly revert "remove now-obsolete use of skip_doctest outside core"...
Partly revert "remove now-obsolete use of skip_doctest outside core" This partly reverts commit 02234da0d461f5ddee142d51952dc10a86b8074e. test_decorators.py is intended to test skip_doctest, the removing was wrong.

File last commit:

r13387:3b4dba0a
r26938:fda2ebea
Show More
setupegg.py
7 lines | 217 B | text/x-python | PythonLexer
vivainio
Separate eggsetup.py that handles scripts installation in the egg...
r138 #!/usr/bin/env python
Brian E Granger
Adding documentation to setup* files.
r1239 """Wrapper to run setup.py using setuptools."""
vivainio
Separate eggsetup.py that handles scripts installation in the egg...
r138
Fernando Perez
Move cleanup to main setup.py, where it belongs....
r2460 # Import setuptools and call the actual setup
vivainio
changed setup to support easy_install ipython==dev
r173 import setuptools
Thomas Kluyver
Don't use execfile in setupegg.py
r13387 with open('setup.py', 'rb') as f:
exec(compile(f.read(), 'setup.py', 'exec'))