We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c4a6a6 commit 211dab3Copy full SHA for 211dab3
docs/conf.py
@@ -0,0 +1,13 @@
1
+import os, sys
2
+sys.path.insert(0, os.path.abspath(".."))
3
+sys.path.insert(0, os.path.abspath("../src")) # 如果是 src 布局
4
+
5
+project = "pyXenium"
6
+extensions = [
7
+ "myst_parser",
8
+ "sphinx.ext.autodoc",
9
+ "sphinx.ext.napoleon",
10
+ "sphinx_autodoc_typehints",
11
+ "sphinx.ext.viewcode",
12
+]
13
+html_theme = "furo"
docs/index.md
@@ -1 +1,7 @@
-# pyXenium Docs
+# pyXenium 文档
+```{toctree}
+:maxdepth: 2
+:hidden:
+api
docs/requirements.txt
@@ -0,0 +1,4 @@
+sphinx
+furo
+myst-parser
+sphinx-autodoc-typehints
0 commit comments