diff --git a/docs/source/conf.py b/docs/source/conf.py index fd1f2329d4d555616abebb83962c69b8e7dae189..adb81287bdcf3321c4ad3dfc6fadc2f386a28941 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -1,4 +1,7 @@ from typing import List +import os +import sys +sys.path.insert(0, os.path.abspath('../..')) # Source code dir relative to this file # Configuration file for the Sphinx documentation builder. # @@ -21,7 +24,7 @@ extensions = ["sphinx.ext.autodoc", "sphinx.ext.autosummary", "sphinxawesome_the templates_path = ["_templates"] exclude_patterns: List[str] = [] autosummary_generate = True -numpydoc_show_class_members = False +numpydoc_show_class_members = True # -- Options for HTML output -------------------------------------------------