##// END OF EJS Templates
re-enable pydb flag...
re-enable pydb flag Note that pydb has been deprecated, and superseded by pydbgr, which may be abandoned. It would be preferable if the Pdb class could inherit from pydb or pdb based on a runtime flag rather than checking sys.argv at the top level. This at least restores old behavior for pydb users. closes #636

File last commit:

r2460:e8303d57
r5004:d16b38ed
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')