##// END OF EJS Templates
Set default figure size in inline mode to (6,4)....
Set default figure size in inline mode to (6,4). Otherwise, unless users have configured it manually, the default of (8, 6) that mpl uses produces giant figures on the canvas that aren't particularly useful. Since controlling the figure size in inline mode may be a more frequent need, added a top-level helper (most people won't know what the right call is to make otherwise).

File last commit:

r1334:049617d6
r3045:18c7e12c
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',
],
},
)