summaryrefslogtreecommitdiff
path: root/numpydoc/__init__.py
blob: e4038f01c2879ad375f808c738a4e4c3d6512190 (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.0.0'


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