##// END OF EJS Templates
imp module deprecated in 3.4...
imp module deprecated in 3.4 We still use imp.find_module,(in IPython/utils/module_paths.py) but this as no newer drop-in replacement as far as I understand. Some alternative suggested here: https://docs.python.org/3/library/importlib.html#importlib.abc.Finder Deprecated since version 3.3: Use MetaPathFinder or PathEntryFinder instead. The various error messages are not clear of the exact version where this is deprecated.

File last commit:

r13387:3b4dba0a
r21257:1f186991
Show More
setupegg.py
7 lines | 217 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
with open('setup.py', 'rb') as f:
exec(compile(f.read(), 'setup.py', 'exec'))