Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemath
GitHub Repository: sagemath/sagelib
Path: blob/master/doc/en/faq/conf.py
4057 views
1
# -*- coding: utf-8 -*-
2
#
3
# Sage documentation build configuration file, created by
4
# sphinx-quickstart on Thu Aug 21 20:15:55 2008.
5
#
6
# This file is execfile()d with the current directory set to its containing
7
# dir.
8
#
9
# The contents of this file are pickled, so don't put values in the namespace
10
# that aren't pickleable (module imports are okay, they're removed
11
# automatically).
12
#
13
# All configuration values have a default; values that are commented out
14
# serve to show the default.
15
16
import os
17
import sys
18
19
sys.path.append(os.environ["SAGE_DOC"])
20
from common.conf import *
21
22
# General information about the project.
23
project = u"Sage FAQ"
24
25
# The name for this set of Sphinx documents. If None, it defaults to
26
# "<project> v<release> documentation".
27
html_title = project + " v" + release
28
29
# Output file base name for HTML help builder.
30
htmlhelp_basename = "faq"
31
32
# Grouping the document tree into LaTeX files. List of tuples
33
# (source start file, target name, title, author, document class
34
# [howto/manual]).
35
latex_documents = [
36
("index", "faq.tex", u"Sage FAQ",
37
u"The Sage Development Team", "manual"),
38
]
39
40