Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemath
GitHub Repository: sagemath/sagesmc
Path: blob/master/src/doc/en/prep/conf.py
8815 views
1
# -*- coding: utf-8 -*-
2
#
3
# PREP Tutorials documentation build configuration file, created by
4
# sphinx-quickstart on Tue Jul 3 10:54:56 2012.
5
#
6
# This file is execfile()d with the current directory set to its containing dir.
7
#
8
# Note that not all possible configuration values are present in this
9
# autogenerated file.
10
#
11
# All configuration values have a default; values that are commented out
12
# serve to show the default.
13
14
import sys, os
15
sys.path.append(os.environ['SAGE_DOC'])
16
from common.conf import *
17
18
19
# General information about the project.
20
project = u'PREP Tutorials'
21
copyright = u'2012, Rob Beezer, Karl-Dieter Crisman, and Jason Grout'
22
name = 'prep_tutorials'
23
24
# The name for this set of Sphinx documents. If None, it defaults to
25
# "<project> v<release> documentation".
26
html_title = project + " v"+release
27
28
# Output file base name for HTML help builder.
29
htmlhelp_basename = name
30
31
# Grouping the document tree into LaTeX files. List of tuples
32
# (source start file, target name, title, author, document class [howto/manual]).
33
latex_documents = [
34
('index', name+'.tex', u'PREP Tutorials',
35
u'Rob Beezer, Karl-Dieter Crisman, and Jason Grout', 'manual'),
36
]
37