-
-
Notifications
You must be signed in to change notification settings - Fork 191
Expand file tree
/
Copy pathconf.py
More file actions
executable file
·47 lines (38 loc) · 1.2 KB
/
conf.py
File metadata and controls
executable file
·47 lines (38 loc) · 1.2 KB
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
import importlib
extensions = [
"sphinx.ext.autodoc",
"sphinx.ext.intersphinx",
"sphinx.ext.viewcode",
"sphinx.ext.todo",
"sphinx_issues",
]
primary_domain = "py"
default_role = "py:obj"
intersphinx_mapping = {
"python": ("https://python.readthedocs.io/en/latest/", None),
"marshmallow": ("https://marshmallow.readthedocs.io/en/latest/", None),
"webargs": ("https://webargs.readthedocs.io/en/latest/", None),
}
issues_github_path = "marshmallow-code/apispec"
source_suffix = ".rst"
master_doc = "index"
project = "apispec"
copyright = "Steven Loria, Jérôme Lafréchoux, and contributors"
version = release = importlib.metadata.version("apispec")
exclude_patterns = ["_build"]
# THEME
html_theme = "furo"
html_theme_options = {
"source_repository": "https://github.com/marshmallow-code/apispec",
"source_branch": "dev",
"source_directory": "docs/",
"light_css_variables": {
"font-stack": "Charter, Iowan Old Style, Palatino Linotype, Palatino, Georgia, serif;",
},
"top_of_page_buttons": ["view", "edit"],
}
pygments_dark_style = "lightbulb"
html_static_path = ["_static"]
html_css_files = ["custom.css"]
html_copy_source = False
html_show_sourcelink = False