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 8c64fbf commit 43414d9Copy full SHA for 43414d9
docs/conf.py
@@ -22,6 +22,7 @@
22
23
extensions = [
24
"sphinx.ext.autodoc",
25
+ "autoapi.extension",
26
"sphinx.ext.intersphinx",
27
"sphinx_autodoc_typehints",
28
"sphinx.ext.todo",
@@ -96,6 +97,12 @@
96
97
ogp_desscription_length = about["__description__"]
98
ogp_site_name = about["__title__"]
99
100
+# sphinx-autoapi
101
+autoapi_type = "python"
102
+autoapi_dirs = [project_root / "libtmux"]
103
+autoapi_generate_api_docs = False # when fales, use directives
104
+suppress_warnings = ["autoapi.python_import_resolution", "autoapi.not_readable"]
105
+
106
# sphinx-copybutton
107
copybutton_prompt_text = (
108
r">>> |\.\.\. |> |\$ |\# | In \[\d*\]: | {2,5}\.\.\.: | {5,8}: "
0 commit comments