1# Configuration file for the Sphinx documentation builder.
2#
3# This file only contains a selection of the most common options. For a full
4# list see the documentation:
5# http://www.sphinx-doc.org/en/master/config
6# -- Path setup --------------------------------------------------------------
7# If extensions (or modules to document with autodoc) are in another directory,
8# add these directories to sys.path here. If the directory is relative to the
9# documentation root, use os.path.abspath to make it absolute, like shown here.
10#
11# import os
12# import sys
13# sys.path.insert(0, os.path.abspath('.'))
14import platform
15from datetime import datetime
16from zoneinfo import ZoneInfo
17
18import sphinx
19import sphinx_material
20
21# If extensions (or modules to document with autodoc) are in another directory,
22# add these directories to sys.path here. If the directory is relative to the
23# documentation root, use os.path.abspath to make it absolute, like shown here.
24# sys.path.insert(0, os.path.abspath("./src"))
25
26project = "Tuto project"
27html_title = project
28
29author = f"DevOps people"
30html_logo = "images/project.png"
31html_favicon = "images/project.png"
32release = "0.1.0"
33now = datetime.now(tz=ZoneInfo("Europe/Paris"))
34version = f"{now.year}-{now.month:02}-{now.day:02} {now.hour:02}H ({now.tzinfo})"
35today = version
36
37extensions = [
38 "sphinx.ext.autodoc",
39 "sphinx.ext.doctest",
40 "sphinx.ext.extlinks",
41 "sphinx.ext.intersphinx",
42 "sphinx.ext.todo",
43 "sphinx.ext.mathjax",
44 "sphinx.ext.viewcode",
45 "sphinx_copybutton",
46]
47autosummary_generate = True
48autoclass_content = "class"
49
50# Add any paths that contain templates here, relative to this directory.
51templates_path = ["_templates"]
52exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"]
53html_static_path = ["_static"]
54html_show_sourcelink = True
55html_sidebars = {
56 "**": ["logo-text.html", "globaltoc.html", "localtoc.html", "searchbox.html"]
57}
58extensions.append("sphinx_material")
59html_theme_path = sphinx_material.html_theme_path()
60html_context = sphinx_material.get_html_context()
61html_theme = "sphinx_material"
62
63extensions.append("sphinx.ext.intersphinx")
64intersphinx_mapping = {
65 "python": ("https://gdevops.gitlab.io/tuto_project/", None),
66 "kubernetes": ("https://gdevops.gitlab.io/tuto_kubernetes/", None),
67 "docker": ("https://gdevops.gitlab.io/tuto_docker/", None),
68 "git": ("https://gdevops.gitlab.io/tuto_git/", None),
69 "http": ("https://gdevops.gitlab.io/tuto_http/", None),
70 "ides": ("https://gdevops.gitlab.io/tuto_ides/", None),
71 "sysops": ("https://gdevops.gitlab.io/tuto_sysops/", None),
72 "documentation": ("https://gdevops.gitlab.io/tuto_documentation/", None),
73 "webframeworks": ("https://gdevops.gitlab.io/tuto_webframeworks/", None),
74 "django": ("https://gdevops.gitlab.io/tuto_django/", None),
75 "languages": ("https://gdevops.gitlab.io/tuto_languages/", None),
76 "secops": ("https://gdevops.gitlab.io/tuto_secops/", None),
77 "fediverse": ("https://gdevops.gitlab.io/tuto_fediverse/", None),
78}
79extensions.append("sphinx.ext.todo")
80todo_include_todos = True
81
82
83# Panels config
84panels_add_bootstrap_css = False
85
86# autoclasstoc + napoleon + autodoc
87# https://autoclasstoc.readthedocs.io/en/latest/basic_usage.html
88extensions += [
89 "sphinx.ext.napoleon",
90 "sphinx.ext.autodoc",
91 "sphinx.ext.autosummary",
92 "sphinx.ext.viewcode",
93]
94
95
96# material theme options (see theme.conf for more information)
97# https://gitlab.com/bashtage/sphinx-material/blob/master/sphinx_material/sphinx_material/theme.conf
98# Colors
99# The theme color for mobile browsers. Hex color.
100# theme_color = #3f51b5
101# Primary colors:
102# red, pink, purple, deep-purple, indigo, blue, light-blue, cyan,
103# teal, green, light-green, lime, yellow, amber, orange, deep-orange,
104# brown, grey, blue-grey, white
105# Accent colors:
106# red, pink, purple, deep-purple, indigo, blue, light-blue, cyan,
107# teal, green, light-green, lime, yellow, amber, orange, deep-orange
108# color_accent = blue
109# color_primary = blue-grey
110
111# material theme options (see theme.conf for more information)
112html_theme_options = {
113 "base_url": "https://gdevops.gitlab.io/tuto_project/",
114 "repo_url": "https://gitlab.com/gdevops/tuto_project",
115 "repo_name": project,
116 "html_minify": False,
117 "html_prettify": True,
118 "css_minify": True,
119 "repo_type": "gitlab",
120 "globaltoc_depth": -1,
121 "color_primary": "green",
122 "color_accent": "cyan",
123 "theme_color": "#2196f3",
124 "master_doc": False,
125 "nav_links": [
126 {
127 "href": "genindex",
128 "internal": True,
129 "title": "Index",
130 },
131 {
132 "href": "https://gdevops.gitlab.io/tuto_devops/",
133 "internal": False,
134 "title": "Tutos devops",
135 },
136 ],
137 "heroes": {
138 "index": "Tuto Project",
139 },
140 "table_classes": ["plain"],
141}
142
143
144language = "en"
145html_last_updated_fmt = ""
146
147todo_include_todos = True
148
149html_use_index = True
150html_domain_indices = True
151
152copyright = f"2018-{now.year}, {author} Built with sphinx {sphinx.__version__} Python {platform.python_version()}"