##// END OF EJS Templates
Wrote "What's new" document, basically release notes, minor 3.0 comments....
Wrote "What's new" document, basically release notes, minor 3.0 comments. Unless I spot a problem tomorrow with fresh eyes, this will be tagged as 0.10 final.

File last commit:

r1334:049617d6
r2144:b39e5481
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',
],
},
)