43 lines
1.0 KiB
Python
Executable File
43 lines
1.0 KiB
Python
Executable File
# -- Project information ------------------------------------------------------
|
|
|
|
repository = 'hdl'
|
|
project = 'HDL'
|
|
copyright = '2024, Analog Devices, Inc.'
|
|
author = 'Analog Devices, Inc.'
|
|
|
|
# -- General configuration ----------------------------------------------------
|
|
|
|
extensions = [
|
|
"sphinx.ext.todo",
|
|
"sphinxcontrib.wavedrom",
|
|
"adi_doctools"
|
|
]
|
|
|
|
needs_extensions = {
|
|
'adi_doctools': '0.3'
|
|
}
|
|
|
|
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
|
|
source_suffix = '.rst'
|
|
|
|
# -- External docs configuration ----------------------------------------------
|
|
|
|
interref_repos = ['doctools']
|
|
|
|
# -- Custom extensions configuration ------------------------------------------
|
|
|
|
hide_collapsible_content = True
|
|
validate_links = False
|
|
|
|
# -- todo configuration -------------------------------------------------------
|
|
|
|
todo_include_todos = True
|
|
todo_emit_warnings = True
|
|
|
|
# -- Options for HTML output --------------------------------------------------
|
|
|
|
html_theme = 'cosmic'
|
|
html_static_path = ['sources']
|
|
html_css_files = ["custom.css"]
|
|
html_favicon = "sources/icon.svg"
|