mirror of
https://github.com/len0rd/personal-website.git
synced 2025-03-01 03:51:57 -05:00
22 lines
468 B
Python
22 lines
468 B
Python
|
# Sphinx docs configuration for building project documentation
|
||
|
from datetime import datetime
|
||
|
import os
|
||
|
|
||
|
project = "Lenords Projects"
|
||
|
author = "lenord"
|
||
|
copyright = f"{datetime.now().year}, lenordsNet"
|
||
|
|
||
|
extensions = [
|
||
|
"sphinxcontrib.youtube",
|
||
|
]
|
||
|
|
||
|
root_doc = "contents"
|
||
|
|
||
|
html_theme = "sphinx_rtd_theme"
|
||
|
html_additional_pages = {
|
||
|
"index": os.path.abspath(os.path.join("..", "views", "pages", "index.ejs"))
|
||
|
}
|
||
|
# html_static_path = ["_static"]
|
||
|
|
||
|
pygments_style = "sas"
|