##// END OF EJS Templates
Treat __init__.pyc same as __init__.py in module_list...
Treat __init__.pyc same as __init__.py in module_list There are some circumstances where packages on disk could only have a .pyc version of __init__.py. It would be nice if ipython would autocomplete them as well. I've been using this in a production environment for several weeks now.

File last commit:

r2460:e8303d57
r8538:56ab409f
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')