We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dff408f commit 58488baCopy full SHA for 58488ba
docs/conf.py
@@ -21,6 +21,7 @@
21
22
extensions = [
23
"sphinx.ext.autodoc",
24
+ "autoapi.extension",
25
"sphinx.ext.autosummary",
26
"sphinx_autodoc_typehints",
27
"sphinx.ext.intersphinx",
@@ -95,6 +96,12 @@ def setup(app):
95
96
autodoc_member_order = "bysource"
97
autosummary_generate = True
98
99
+# sphinx-autoapi
100
+autoapi_type = "python"
101
+autoapi_dirs = [project_root / "libvcs"]
102
+autoapi_generate_api_docs = False # when fales, use directives
103
+suppress_warnings = ["autoapi"]
104
+
105
# sphinxext.opengraph
106
ogp_site_url = about["__docs__"]
107
ogp_image = "_static/img/icons/icon-192x192.png"
0 commit comments