Path: blob/master/src/doc/en/thematic_tutorials/conf.py
8815 views
# -*- coding: utf-8 -*-1#2# Sage documentation build configuration file, created by3# sphinx-quickstart on Thu Aug 21 20:15:55 2008.4#5# This file is execfile()d with the current directory set to its containing6# dir.7#8# The contents of this file are pickled, so don't put values in the namespace9# that aren't pickleable (module imports are okay, they're removed10# automatically).11#12# All configuration values have a default; values that are commented out13# serve to show the default.1415import os16import sys17sys.path.append(os.environ["SAGE_DOC"])18from common.conf import *1920# General information about the project.21project = u"Thematic Tutorials"2223# The name for this set of Sphinx documents. If None, it defaults to24# "<project> v<release> documentation".25html_title = project + " v" + release2627# Output file base name for HTML help builder.28htmlhelp_basename = "thematic_tutorials"2930# Grouping the document tree into LaTeX files. List of tuples31# (source start file, target name, title, author,32# document class [howto/manual]).33latex_documents = [(34"index", "thematic_tutorials.tex", u'Thematic Tutorials',35u'The Sage Development Team', 'manual'),36]3738show_authors = True394041