Source code for autodoc2

"""Analyse a python project and create documentation for it."""

__version__ = "0.5.0"


[docs]def setup(app): # type: ignore """Entrypoint for sphinx.""" from .sphinx.extension import setup as _setup return _setup(app)