diff --git a/docs/conf.py b/docs/conf.py index 6e02f92..2dcd396 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -34,7 +34,7 @@ # ones. extensions = [ "sphinx.ext.autodoc", - "sphinx.ext.viewcode", + # "sphinx.ext.viewcode", "autoapi.extension", "sphinx_rtd_theme", "m2r2" @@ -43,6 +43,8 @@ # Document Python Code autoapi_type = 'python' autoapi_dirs = ['../serializable'] +# see https://sphinx-autoapi.readthedocs.io/en/latest/reference/config.html#confval-autoapi_options +autoapi_options = ['show-module-summary', 'members', 'undoc-members', 'inherited-members', 'show-inheritance'] source_suffix = ['.rst', '.md']