##// END OF EJS Templates
Fixed foolscap imports....
Fixed foolscap imports. As of Foolscap 0.4.3, foolscap introduces a foolscap.api module that all top-level symbols must be imported from. Fixes https://bugs.launchpad.net/ipython/+bug/525805

File last commit:

r2460:e8303d57
r2526:ec6b47e5
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')