22 lines
485 B
Python
22 lines
485 B
Python
import os
|
|
import sys
|
|
|
|
project = 'UniversalisOS'
|
|
copyright = '2026, PortugalFuturista Hypervisor Development Team'
|
|
author = 'PortugalFuturista Hypervisor Development Team'
|
|
release = '2.0.0'
|
|
|
|
extensions = [
|
|
'breathe',
|
|
]
|
|
|
|
breathe_projects = {
|
|
"UniversalisOS": "_build/doxygen/xml/",
|
|
}
|
|
breathe_default_project = "UniversalisOS"
|
|
|
|
templates_path = ['_templates']
|
|
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
|
|
|
|
html_theme = 'sphinx_rtd_theme'
|
|
html_static_path = ['_static']
|