blob: 6b085e04898e49eb9b6e38fe2d4b04bd73f85947 [file] [log] [blame]
Georg Brandl116aa622007-08-15 14:28:22 +00001#
2# Python documentation build configuration file
3#
Christian Heimes679db4a2008-01-18 09:56:22 +00004# This file is execfile()d with the current directory set to its containing dir.
5#
Georg Brandl116aa622007-08-15 14:28:22 +00006# The contents of this file are pickled, so don't put values in the namespace
7# that aren't pickleable (module imports are okay, they're removed automatically).
Christian Heimes2c181612007-12-17 20:04:13 +00008
Georg Brandl86def6c2008-01-21 20:36:10 +00009import sys, os, time
Christian Heimes33fe8092008-04-13 13:53:33 +000010sys.path.append(os.path.abspath('tools/sphinxext'))
Georg Brandl86def6c2008-01-21 20:36:10 +000011
Christian Heimes2c181612007-12-17 20:04:13 +000012# General configuration
13# ---------------------
Georg Brandl116aa622007-08-15 14:28:22 +000014
Christian Heimesfe337bf2008-03-23 21:54:12 +000015extensions = ['sphinx.ext.refcounting', 'sphinx.ext.coverage',
Martin v. Löwis5680d0c2008-04-10 03:06:53 +000016 'sphinx.ext.doctest', 'pyspecific']
Georg Brandl45832ea2008-03-12 08:52:43 +000017templates_path = ['tools/sphinxext']
Christian Heimes26855632008-01-27 23:50:43 +000018
Christian Heimes679db4a2008-01-18 09:56:22 +000019# General substitutions.
20project = 'Python'
Georg Brandl86def6c2008-01-21 20:36:10 +000021copyright = '1990-%s, Python Software Foundation' % time.strftime('%Y')
Christian Heimes679db4a2008-01-18 09:56:22 +000022
Georg Brandl116aa622007-08-15 14:28:22 +000023# The default replacements for |version| and |release|.
Georg Brandl116aa622007-08-15 14:28:22 +000024#
25# The short X.Y version.
26# version = '2.6'
Georg Brandl116aa622007-08-15 14:28:22 +000027# The full version, including alpha/beta/rc tags.
28# release = '2.6a0'
Georg Brandl86def6c2008-01-21 20:36:10 +000029
30# We look for the Include/patchlevel.h file in the current Python source tree
31# and replace the values accordingly.
32import patchlevel
33version, release = patchlevel.get_version_info()
Georg Brandl116aa622007-08-15 14:28:22 +000034
35# There are two options for replacing |today|: either, you set today to some
36# non-false value, then it is used:
37today = ''
38# Else, today_fmt is used as the format for a strftime call.
39today_fmt = '%B %d, %Y'
40
Georg Brandl116aa622007-08-15 14:28:22 +000041# List of files that shouldn't be included in the build.
Christian Heimes3feef612008-02-11 06:19:17 +000042unused_docs = [
Christian Heimes3feef612008-02-11 06:19:17 +000043 'maclib/scrap',
44 'library/xmllib',
45 'library/xml.etree',
Georg Brandl116aa622007-08-15 14:28:22 +000046]
47
Benjamin Petersonfa0d7032009-06-01 22:42:33 +000048# Ignore .rst in Sphinx its self.
49exclude_trees = ['tools/sphinx']
50
Christian Heimes679db4a2008-01-18 09:56:22 +000051# Relative filename of the reference count data file.
52refcount_file = 'data/refcounts.dat'
53
Georg Brandl116aa622007-08-15 14:28:22 +000054# If true, '()' will be appended to :func: etc. cross-reference text.
55add_function_parentheses = True
56
57# If true, the current module name will be prepended to all description
58# unit titles (such as .. function::).
59add_module_names = True
Christian Heimes2c181612007-12-17 20:04:13 +000060
Georg Brandl64063702008-09-09 19:10:58 +000061# By default, highlight as Python 3.
62highlight_language = 'python3'
63
Christian Heimes2c181612007-12-17 20:04:13 +000064
65# Options for HTML output
66# -----------------------
67
Georg Brandlab712142012-03-25 20:31:57 +020068html_theme = 'pydoctheme'
69html_theme_path = ['tools/sphinxext']
Georg Brandla0745232010-07-30 11:31:03 +000070html_theme_options = {'collapsiblesidebar': True}
71
Georg Brandlab712142012-03-25 20:31:57 +020072html_short_title = '%s Documentation' % release
73
Christian Heimes2c181612007-12-17 20:04:13 +000074# If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
75# using the given strftime format.
76html_last_updated_fmt = '%b %d, %Y'
77
78# If true, SmartyPants will be used to convert quotes and dashes to
79# typographically correct entities.
80html_use_smartypants = True
81
Christian Heimes679db4a2008-01-18 09:56:22 +000082# Custom sidebar templates, filenames relative to this file.
83html_sidebars = {
Georg Brandl45832ea2008-03-12 08:52:43 +000084 'index': 'indexsidebar.html',
Christian Heimes679db4a2008-01-18 09:56:22 +000085}
86
87# Additional templates that should be rendered to pages.
88html_additional_pages = {
Georg Brandl45832ea2008-03-12 08:52:43 +000089 'download': 'download.html',
Christian Heimesa342c012008-04-20 21:01:16 +000090 'index': 'indexcontent.html',
Christian Heimes679db4a2008-01-18 09:56:22 +000091}
92
Georg Brandle7570052008-05-03 20:52:18 +000093# Output an OpenSearch description file.
Georg Brandl014397e2012-04-07 19:24:40 +020094html_use_opensearch = 'http://docs.python.org/' + version
Georg Brandle7570052008-05-03 20:52:18 +000095
96# Additional static files.
97html_static_path = ['tools/sphinxext/static']
98
Christian Heimes679db4a2008-01-18 09:56:22 +000099# Output file base name for HTML help builder.
Christian Heimesb558a2e2008-03-02 22:46:37 +0000100htmlhelp_basename = 'python' + release.replace('.', '')
Christian Heimes679db4a2008-01-18 09:56:22 +0000101
Amaury Forgeot d'Arc35c86582008-06-17 21:11:29 +0000102# Split the index
103html_split_index = True
104
Christian Heimes2c181612007-12-17 20:04:13 +0000105
106# Options for LaTeX output
107# ------------------------
108
Christian Heimes679db4a2008-01-18 09:56:22 +0000109# The paper size ('letter' or 'a4').
110latex_paper_size = 'a4'
Christian Heimes2c181612007-12-17 20:04:13 +0000111
Christian Heimes679db4a2008-01-18 09:56:22 +0000112# The font size ('10pt', '11pt' or '12pt').
113latex_font_size = '10pt'
114
115# Grouping the document tree into LaTeX files. List of tuples
116# (source start file, target name, title, author, document class [howto/manual]).
117_stdauthor = r'Guido van Rossum\\Fred L. Drake, Jr., editor'
118latex_documents = [
Christian Heimes292d3512008-02-03 16:51:08 +0000119 ('c-api/index', 'c-api.tex',
Christian Heimes679db4a2008-01-18 09:56:22 +0000120 'The Python/C API', _stdauthor, 'manual'),
Christian Heimes292d3512008-02-03 16:51:08 +0000121 ('distutils/index', 'distutils.tex',
Christian Heimes679db4a2008-01-18 09:56:22 +0000122 'Distributing Python Modules', _stdauthor, 'manual'),
Christian Heimes292d3512008-02-03 16:51:08 +0000123 ('extending/index', 'extending.tex',
Christian Heimes679db4a2008-01-18 09:56:22 +0000124 'Extending and Embedding Python', _stdauthor, 'manual'),
Christian Heimes292d3512008-02-03 16:51:08 +0000125 ('install/index', 'install.tex',
Christian Heimes679db4a2008-01-18 09:56:22 +0000126 'Installing Python Modules', _stdauthor, 'manual'),
Christian Heimes292d3512008-02-03 16:51:08 +0000127 ('library/index', 'library.tex',
Christian Heimes679db4a2008-01-18 09:56:22 +0000128 'The Python Library Reference', _stdauthor, 'manual'),
Christian Heimes292d3512008-02-03 16:51:08 +0000129 ('reference/index', 'reference.tex',
Christian Heimes679db4a2008-01-18 09:56:22 +0000130 'The Python Language Reference', _stdauthor, 'manual'),
Christian Heimes292d3512008-02-03 16:51:08 +0000131 ('tutorial/index', 'tutorial.tex',
Christian Heimes679db4a2008-01-18 09:56:22 +0000132 'Python Tutorial', _stdauthor, 'manual'),
Christian Heimes292d3512008-02-03 16:51:08 +0000133 ('using/index', 'using.tex',
Georg Brandl8d582162010-09-03 22:33:27 +0000134 'Python Setup and Usage', _stdauthor, 'manual'),
Georg Brandle5b5ff42010-11-12 06:19:48 +0000135 ('faq/index', 'faq.tex',
136 'Python Frequently Asked Questions', _stdauthor, 'manual'),
Christian Heimes292d3512008-02-03 16:51:08 +0000137 ('whatsnew/' + version, 'whatsnew.tex',
Christian Heimes679db4a2008-01-18 09:56:22 +0000138 'What\'s New in Python', 'A. M. Kuchling', 'howto'),
139]
140# Collect all HOWTOs individually
Christian Heimes292d3512008-02-03 16:51:08 +0000141latex_documents.extend(('howto/' + fn[:-4], 'howto-' + fn[:-4] + '.tex',
Benjamin Petersonf608c612008-11-16 18:33:53 +0000142 '', _stdauthor, 'howto')
Christian Heimes679db4a2008-01-18 09:56:22 +0000143 for fn in os.listdir('howto')
144 if fn.endswith('.rst') and fn != 'index.rst')
145
146# Additional stuff for the LaTeX preamble.
147latex_preamble = r'''
148\authoraddress{
149 \strong{Python Software Foundation}\\
150 Email: \email{docs@python.org}
151}
Benjamin Peterson6cadba72008-11-19 22:38:29 +0000152\let\Verbatim=\OriginalVerbatim
153\let\endVerbatim=\endOriginalVerbatim
Christian Heimes679db4a2008-01-18 09:56:22 +0000154'''
155
156# Documents to append as an appendix to all manuals.
Christian Heimes292d3512008-02-03 16:51:08 +0000157latex_appendices = ['glossary', 'about', 'license', 'copyright']
Christian Heimesd3eb5a152008-02-24 00:38:49 +0000158
Benjamin Peterson8719ad52009-09-11 22:24:02 +0000159# Get LaTeX to handle Unicode correctly
Georg Brandl4bf70682010-07-27 18:19:21 +0000160latex_elements = {'inputenc': r'\usepackage[utf8x]{inputenc}', 'utf8extra': ''}
Benjamin Peterson8719ad52009-09-11 22:24:02 +0000161
Christian Heimesd3eb5a152008-02-24 00:38:49 +0000162# Options for the coverage checker
163# --------------------------------
164
165# The coverage checker will ignore all modules/functions/classes whose names
166# match any of the following regexes (using re.match).
167coverage_ignore_modules = [
168 r'[T|t][k|K]',
169 r'Tix',
170 r'distutils.*',
171]
172
173coverage_ignore_functions = [
174 'test($|_)',
175]
176
177coverage_ignore_classes = [
178]
179
180# Glob patterns for C source files for C API coverage, relative to this directory.
181coverage_c_path = [
182 '../Include/*.h',
183]
184
185# Regexes to find C items in the source files.
186coverage_c_regexes = {
187 'cfunction': (r'^PyAPI_FUNC\(.*\)\s+([^_][\w_]+)'),
188 'data': (r'^PyAPI_DATA\(.*\)\s+([^_][\w_]+)'),
189 'macro': (r'^#define ([^_][\w_]+)\(.*\)[\s|\\]'),
190}
191
192# The coverage checker will ignore all C items whose names match these regexes
193# (using re.match) -- the keys must be the same as in coverage_c_regexes.
194coverage_ignore_c_items = {
195# 'cfunction': [...]
196}