File size: 767 Bytes
ae292e0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
# docs/conf.py
import os
import sys
from datetime import datetime

# If your docs are in a package, add the package path here:
# sys.path.insert(0, os.path.abspath('..'))

project = "AuraOS"
author = "Anthony Dulong"
release = "5.0"

extensions = [
    "myst_parser",
]

# Source suffix mapping for .rst and .md
source_suffix = {
    ".rst": "restructuredtext",
    ".md": "markdown",
}

master_doc = "index"

language = "en"

exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"]

# HTML output
html_theme = "sphinx_rtd_theme"
html_static_path = ["_static"]

# Warn about all references that cannot be resolved
nitpicky = False  # Set to True to make more strict

# General substitutions
html_title = f"{project} documentation"
html_last_updated_fmt = "%b %d, %Y"