This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
yap-6.3/packages/python/yap_kernel/yap_ipython/testing/plugin/setup.py
Vitor Santos Costa 791484c132 inputhooks
2018-01-05 17:13:37 +00:00

19 lines
555 B
Python

#!/usr/bin/env python
"""A Nose plugin to support yap_ipython doctests.
"""
from setuptools import setup
setup(name='yap_ipython doctest plugin',
version='0.1',
author='The yap_ipython Team',
description = 'Nose plugin to load yap_ipython-extended doctests',
license = 'LGPL',
py_modules = ['ipdoctest'],
entry_points = {
'nose.plugins.0.10': ['ipdoctest = ipdoctest:IPythonDoctest',
'extdoctest = ipdoctest:ExtensionDoctest',
],
},
)