2022-10-06 14:05:49 -04:00
|
|
|
# Sphinx docs configuration for building project documentation
|
|
|
|
from datetime import datetime
|
2022-10-06 19:48:52 -04:00
|
|
|
import sphinx_bootstrap_theme
|
2022-10-06 14:05:49 -04:00
|
|
|
import os
|
|
|
|
|
2022-10-06 19:48:52 -04:00
|
|
|
project = "lenordsNet Projects"
|
2022-10-06 14:05:49 -04:00
|
|
|
author = "lenord"
|
|
|
|
copyright = f"{datetime.now().year}, lenordsNet"
|
|
|
|
|
|
|
|
extensions = [
|
|
|
|
"sphinxcontrib.youtube",
|
|
|
|
]
|
|
|
|
|
|
|
|
root_doc = "contents"
|
|
|
|
|
2022-10-06 19:48:52 -04:00
|
|
|
html_theme = "bootstrap"
|
|
|
|
html_theme_path = sphinx_bootstrap_theme.get_html_theme_path()
|
|
|
|
html_baseurl = "/"
|
|
|
|
html_use_index = False
|
|
|
|
html_theme_options = {
|
|
|
|
"navbar_title": "lenordsNet",
|
|
|
|
"navbar_sidebarrel": False,
|
|
|
|
"navbar_class": "navbar navbar-inverse navbar-dark",
|
|
|
|
"source_link_position": "footer",
|
|
|
|
"bootswatch_theme": "cyborg",
|
2022-10-06 14:05:49 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
pygments_style = "sas"
|