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


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

    return setup(app, *args, **kwargs)