##// END OF EJS Templates
Merge pull request #1657 from tkf/editor-wait-opt...
Merge pull request #1657 from tkf/editor-wait-opt Add `wait` optional argument to `hooks.editor`. As indicated the discussion for #1655 (superseded by this PR), this allows users to define custom magics that can call editors without waiting for a return value.

File last commit:

r2460:e8303d57
r6752:e881f314 merge
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')