# 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 = 'jsix' copyright = '2024, Justin C. Miller' author = 'Justin C. Miller' release = '0.8' # -- General configuration --------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration extensions = ['sphinx.ext.todo'] primary_domain = 'cpp' todo_include_todos = True templates_path = ['_templates'] exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store'] # -- Options for HTML output ------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output html_theme = 'renku' html_title = 'jsix' html_logo = 'jsix_transparent.svg' html_static_path = ['_static'] html_css_files = ['custom.css'] html_theme_options = { "description": "The jsix description", "github_repo": "https://github.com/justinian/jsix", "logo_only": True, "footer_icons": [ { "name": "GitHub", "url": "https://github.com/justinian/jsix", "html": """ """, "class": "", }, ], }