From 8f3c381ea5951d7f03333ad9f26baab35c36ae08 Mon Sep 17 00:00:00 2001 From: Bruno Sime Ferreira Nunes <bsfn19@inf.ufpr.br> Date: Thu, 20 Mar 2025 14:56:38 +0000 Subject: [PATCH] Update file conf.py --- source/conf.py | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) diff --git a/source/conf.py b/source/conf.py index 9ab2354..01cfeb5 100644 --- a/source/conf.py +++ b/source/conf.py @@ -13,6 +13,24 @@ release = "0.1.0" version = "0.1.0" +# -- General configuration --------------------------------------------------- +# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration + + 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 = "Documentação do Usuário do C3HPC" +copyright = "2025, Bruno S." +author = "Bruno S." +release = "0.1.0" +version = "0.1.0" + + # -- General configuration --------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration @@ -24,6 +42,29 @@ extensions = [ "sphinx_rtd_size", "sphinx.ext.intersphinx", ] +master_doc = "index" +intersphinx_mapping = { + "python": ("https://docs.python.org/3/", None), + "sphinx": ("https://www.sphinx-doc.org/en/master/", None), +} +intersphinx_disabled_domains = ["std"] +#sphinx_rtd_size_width = "100%" + + +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 + +html_theme = "furo" +html_static_path = ["_static", "_static/c3sl_logo.svg"] +html_logo = "_static/c3sl_logo.svg" +html_favicon = "_static/c3sl_logo.svg" +# -- Options for EPUB output +epub_show_urls = "footnote" intersphinx_mapping = { "python": ("https://docs.python.org/3/", None), "sphinx": ("https://www.sphinx-doc.org/en/master/", None), -- GitLab