##// END OF EJS Templates
Ignore `.ipynb_checkpoints` when building docs (#13929)...
Ignore `.ipynb_checkpoints` when building docs (#13929) This is a small thing - when editing the docs from JupyterLab Desktop, any file opened will leave `.ipynb_checkpoints` temp directory. Editing documentation in Jupyter itself is quite common especially when using spinx-myst and it is convenient enough for me, but without this change Sphinx errors out on every other build.

File last commit:

r1334:049617d6
r28085:a478e662 merge
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',
],
},
)