Simple HTML Generation https://minihtml.trendels.name/
at main 33 lines 1.1 kB view raw
1# Configuration file for the Sphinx documentation builder. 2# 3# For the full list of built-in configuration values, see the documentation: 4# https://www.sphinx-doc.org/en/master/usage/configuration.html 5 6# -- Project information ----------------------------------------------------- 7# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information 8 9project = 'minihtml' 10copyright = '2025, Stanis Trendelenburg' 11author = 'Stanis Trendelenburg' 12 13# -- General configuration --------------------------------------------------- 14# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration 15 16extensions = [ 17 'sphinx_copybutton', 18 'sphinx.ext.doctest', 19 'sphinx.ext.napoleon', 20 'sphinx.ext.autodoc', 21] 22 23templates_path = ['_templates'] 24exclude_patterns = [] 25 26copybutton_exclude = '.linenos, .gp, .go' 27copybutton_copy_empty_lines = False 28 29# -- Options for HTML output ------------------------------------------------- 30# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output 31 32html_theme = 'furo' 33html_static_path = ['_static']