isa-2026-1/docs/conf.py

57 lines
1.7 KiB
Python

# Configuration file for the Sphinx documentation builder.
#
# For the full list of built-in configuration values, see the documentation:
# https://www.sphinx-doc.org/en/master/usage/configuration.html
# -- Project information -----------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
project = 'DOCE'
copyright = '2026, AUTOR'
author = 'AUTOR'
release = 'ANO_PERIODO'
# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
extensions = [
'myst_parser'
]
templates_path = ['_templates']
exclude_patterns = []
language = 'pt_BR'
# -- Options for HTML output -------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
namespace = 'redes20261'
repo = 'isa-2026-1'
html_theme = 'furo'
html_title = html_short_title = project
html_static_path = ['_static']
html_theme_options = {
"source_repository": f"https://gitea.mange.ifrn.edu.br/{namespace}/{repo}/",
"source_branch": "main",
"source_directory": "docs/",
"source_edit_link": f"https://gitea.mange.ifrn.edu.br/{namespace}/{repo}/_edit/main/docs/{{filename}}",
"source_view_link": f"https://gitea.mange.ifrn.edu.br/{namespace}/{repo}/src/branch/main/docs/{{filename}}",
}
myst_links_external_new_tab = True
myst_number_code_blocks = ['Python', 'Bash']
myst_heading_anchors = 3
myst_enable_extensions = {
"colon_fence": True,
"dolarmath": True,
"deflist": True,
"linkify": True,
"replacements": True,
"strikethrough": True,
"tasklist": True,
}