##// END OF EJS Templates
update MANIFEST.in...
update MANIFEST.in previously all subpackages were added to manifest manually, resulting in packages becoming out of date, and being excluded from sdists. Now, IPython itself is grafted, and deathrow pruned, resulting in a more future-safe MANIFEST file.

File last commit:

r2460:e8303d57
r4169:7e2bc828
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')