Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemath
GitHub Repository: sagemath/sagelib
Path: blob/master/doc/en/numerical_sage/conf.py
4069 views
1
# -*- coding: utf-8 -*-
2
#
3
# Numerical Sage documentation build configuration file, created by
4
# sphinx-quickstart on Sat Dec 6 11:08:04 2008.
5
#
6
# This file is execfile()d with the current directory set to its containing dir.
7
#
8
# The contents of this file are pickled, so don't put values in the namespace
9
# that aren't pickleable (module imports are okay, they're removed automatically).
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
# General information about the project.
19
project = u'Numerical Computing with Sage'
20
copyright = u'2008, Josh Kantor'
21
name = 'numerical_sage'
22
23
# The name for this set of Sphinx documents. If None, it defaults to
24
# "<project> v<release> documentation".
25
html_title = project + " v"+release
26
27
html_short_title = u'Numerical Sage v' + release
28
29
# Output file base name for HTML help builder.
30
htmlhelp_basename = name
31
32
# Grouping the document tree into LaTeX files. List of tuples
33
# (source start file, target name, title, author, document class [howto/manual]).
34
latex_documents = [
35
('index', name+'.tex', u'Numerical Computing with Sage',
36
u'The Sage Development Team', 'manual'),
37
]
38
39
40