# nodoctest1# Numerical Sage documentation build configuration file, created by2# sphinx-quickstart on Sat Dec 6 11:08:04 2008.3#4# This file is execfile()d with the current directory set to its containing dir.5#6# The contents of this file are pickled, so don't put values in the namespace7# that aren't pickleable (module imports are okay, they're removed automatically).8#9# All configuration values have a default; values that are commented out10# serve to show the default.1112from sage_docbuild.conf import release13from sage_docbuild.conf import * # NOQA1415# Add any paths that contain custom static files (such as style sheets),16# relative to this directory to html_static_path. They are copied after the17# builtin static files, so a file named "default.css" will overwrite the18# builtin "default.css". html_common_static_path imported from sage_docbuild.conf19# contains common paths.20html_static_path = [] + html_common_static_path2122# General information about the project.23project = "Documentation"2425# The name for this set of Sphinx documents. Do not include release info.26html_title = project27html_short_title = project2829# Output file base name for HTML help builder.30htmlhelp_basename = 'sage_documentation'3132# Grouping the document tree into LaTeX files. List of tuples33# (source start file, target name, title, author, document class [howto/manual]).34latex_documents = [35('index', 'sage_documentation.tex', 'Documentation',36'The Sage Development Team', 'manual'),37]3839# Note that this effectively replaces the index.html generated from index.rst.40# Hence some template context variables such as 'title' are not provided to41# this "additional" index.html.42html_additional_pages = {43'index': 'index_furo.html' if html_theme == 'furo' else 'index.html',44}454647