/
githubmirror
/
nbs
Обзор
Документация
Войти
/
githubmirror
/
nbs
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
contrib/python/ipython/py2/IPython/testing/plugin/setup.py
18 строк
539 B
wilytiger
support building opensource nbs with ya make
09 окт 2023, 17:33
09 окт 2023, 17:33
759d542
Код
Авторство
О чём код?
#!/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', ], }, )