-
Notifications
You must be signed in to change notification settings - Fork 174
/
Copy pathconf.py
51 lines (40 loc) · 1009 Bytes
/
conf.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
import os.path
import sys
sys.path.append(os.path.abspath(".."))
sys.path.append(os.path.abspath("exts"))
master_doc = "index"
extensions = [
"details",
"drgndoc.ext",
"linuxsrc",
"setuptools_config",
"sphinx.ext.extlinks",
"sphinx.ext.intersphinx",
]
drgndoc_paths = ["../drgn", "../_drgn.pyi"]
drgndoc_substitutions = [
(r"^_drgn\b", "drgn"),
]
extlinks = {
"contrib": (
"https://github.com/osandov/drgn/blob/main/contrib/%s",
"%s",
),
}
intersphinx_mapping = {
"python": ("https://docs.python.org/3", None),
}
manpages_url = "http://man7.org/linux/man-pages/man{section}/{page}.{section}.html"
html_static_path = ["_static"]
html_theme = "alabaster"
html_theme_options = {
"description": "Programmable debugger",
"logo": "logo.png",
"logo_name": True,
"logo_text_align": "center",
"github_user": "osandov",
"github_repo": "drgn",
"github_button": True,
"github_type": "star",
}
html_favicon = "favicon.ico"