summaryrefslogtreecommitdiff
path: root/numpydoc/__init__.py
blob: 062c921f9348522b4e4fc4afed87325dcbf2cc2b (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.2rc2.dev0'


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