# -*- 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 sys1718sys.path.append(os.environ["SAGE_DOC"])19from common.conf import *2021# General information about the project.22project = u"Sage FAQ"2324# The name for this set of Sphinx documents. If None, it defaults to25# "<project> v<release> documentation".26html_title = project + " v" + release2728# Output file base name for HTML help builder.29htmlhelp_basename = "faq"3031# Grouping the document tree into LaTeX files. List of tuples32# (source start file, target name, title, author, document class33# [howto/manual]).34latex_documents = [35("index", "faq.tex", u"Sage FAQ",36u"The Sage Development Team", "manual"),37]383940