# nodoctest1# PREP Tutorials documentation build configuration file, created by2# sphinx-quickstart on Tue Jul 3 10:54:56 2012.3#4# This file is execfile()d with the current directory set to its containing dir.5#6# Note that not all possible configuration values are present in this7# autogenerated file.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# Add small view/edit buttons.23html_theme_options.update({24'source_view_link': os.path.join(source_repository, 'blob/develop/src/doc/en/prep', '{filename}'),25'source_edit_link': os.path.join(source_repository, 'edit/develop/src/doc/en/prep', '{filename}'),26})2728# General information about the project.29project = "PREP Tutorials"30copyright = "2012, Rob Beezer, Karl-Dieter Crisman, and Jason Grout"3132# The name for this set of Sphinx documents. Do not include release info.33html_title = project34html_short_title = project3536# Output file base name for HTML help builder.37htmlhelp_basename = 'prep_tutorials'3839# Grouping the document tree into LaTeX files. List of tuples40# (source start file, target name, title, author, document class [howto/manual]).41latex_documents = [42('index', 'prep_tutorials.tex', 'PREP Tutorials',43'Rob Beezer, Karl-Dieter Crisman, and Jason Grout', 'manual'),44]454647