# -*- coding: utf-8 -*-1#2# Numerical Sage documentation build configuration file, created by3# sphinx-quickstart on Sat Dec 6 11:08:04 2008.4#5# This file is execfile()d with the current directory set to its containing dir.6#7# The contents of this file are pickled, so don't put values in the namespace8# that aren't pickleable (module imports are okay, they're removed automatically).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 *1617# General information about the project.18project = u'Une tournée de Sage'19name = 'a_tour_of_sage'20language = 'fr'2122# The name for this set of Sphinx documents. If None, it defaults to23# "<project> v<release> documentation".24html_title = project + " v"+release2526# Output file base name for HTML help builder.27htmlhelp_basename = name2829# Grouping the document tree into LaTeX files. List of tuples30# (source start file, target name, title, author, document class [howto/manual]).31latex_documents = [32('index', name+'.tex', u'A Tour Of Sage',33u'The Sage Development Team', 'manual'),34]3536# the definition of \\at in the standard preamble of the sphinx doc37# conflicts with that in babel/french[b]38latex_elements['preamble'] += '\\let\\at\\undefined'394041