# -*- coding: utf-8 -*-1#2# PREP Tutorials documentation build configuration file, created by3# sphinx-quickstart on Tue Jul 3 10:54:56 2012.4#5# This file is execfile()d with the current directory set to its containing dir.6#7# Note that not all possible configuration values are present in this8# autogenerated file.9#10# All configuration values have a default; values that are commented out11# serve to show the default.1213import sys, os14sys.path.append(os.environ['SAGE_DOC'])15from common.conf import *161718# General information about the project.19project = u'PREP Tutorials'20copyright = u'2012, Rob Beezer, Karl-Dieter Crisman, and Jason Grout'21name = 'prep_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 = name2930# Grouping the document tree into LaTeX files. List of tuples31# (source start file, target name, title, author, document class [howto/manual]).32latex_documents = [33('index', name+'.tex', u'PREP Tutorials',34u'Rob Beezer, Karl-Dieter Crisman, and Jason Grout', 'manual'),35]3637