##// END OF EJS Templates
Port `deepreload` to `importlib`...
Port `deepreload` to `importlib` `imp` is deprecated since Python 3.3 and scheduled for removal in Python 3.12 The code is severely undertested, I added several, and also fixed a bug that `modules_reloading` was not cleaned-up on an import failure.

File last commit:

r1334:049617d6
r27044:7f364bb8
Show More
setup.py
18 lines | 539 B | text/x-python | PythonLexer
#!/usr/bin/env python
"""A Nose plugin to support IPython doctests.
"""
from setuptools import setup
setup(name='IPython doctest plugin',
version='0.1',
author='The IPython Team',
description = 'Nose plugin to load IPython-extended doctests',
license = 'LGPL',
py_modules = ['ipdoctest'],
entry_points = {
'nose.plugins.0.10': ['ipdoctest = ipdoctest:IPythonDoctest',
'extdoctest = ipdoctest:ExtensionDoctest',
],
},
)