-
Notifications
You must be signed in to change notification settings - Fork 259
/
Copy pathconf.py
79 lines (57 loc) · 1.53 KB
/
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
import alabaster
import os
import sys
sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), "..", "src")))
extensions = [
"sphinx.ext.autodoc",
"sphinx.ext.napoleon",
"sphinxcontrib.autodoc_pydantic",
]
autoclass_content = "both" # Merge the __init__ docstring into the class docstring.
autodoc_member_order = "bysource" # Order by source ordering
autodoc_pydantic_model_show_config = True
autodoc_pydantic_settings_show_json = False
templates_path = ["_templates"]
source_suffix = ".rst"
master_doc = "index"
project = "pyoidc"
copyright = "2014, Roland Hedberg"
version = "0.1"
release = "0.1"
exclude_patterns = ["_build"]
pygments_style = "sphinx"
html_theme_path = [alabaster.get_path()]
html_theme = "alabaster"
html_static_path = ["_static"]
htmlhelp_basename = "pyoidcdoc"
html_theme_options = {
"description": "",
"github_button": False,
"github_user": "its-dirg",
"github_repo": "saml2testGui",
"github_banner": False,
}
html_sidebars = {
"**": [
"about.html",
"navigation.html",
"searchbox.html",
"donate.html",
]
}
man_pages = [("index", "pyoidc", "pyoidc Documentation", ["Roland Hedberg"], 1)]
latex_elements = {}
latex_documents = [
("index", "pyoidc.tex", "pyoidc Documentation", "Roland Hedberg", "manual"),
]
texinfo_documents = [
(
"index",
"pyoidc",
"pyoidc Documentation",
"Roland Hedberg",
"pyoidc",
"One line description of project.",
"Miscellaneous",
),
]