summaryrefslogtreecommitdiff
path: root/numpydoc/__init__.py
blob: be08d4fc300519091aeb3da99f9fca7fe7aee71c (plain)
1
2
3
4
5
6
7
8
9
10
"""
This package provides the numpydoc Sphinx extension for handling docstrings
formatted according to the NumPy documentation format.
"""
__version__ = '1.2'


def setup(app, *args, **kwargs):
    from .numpydoc import setup
    return setup(app, *args, **kwargs)