blob: 551452babd4b348a415ef229d50d6da0b7621e69 [file] [log] [blame]
Georg Brandl116aa622007-08-15 14:28:22 +00001# -*- coding: utf-8 -*-
2#
3# Python documentation build configuration file
4#
Christian Heimes679db4a2008-01-18 09:56:22 +00005# This file is execfile()d with the current directory set to its containing dir.
6#
Georg Brandl116aa622007-08-15 14:28:22 +00007# The contents of this file are pickled, so don't put values in the namespace
8# that aren't pickleable (module imports are okay, they're removed automatically).
Christian Heimes2c181612007-12-17 20:04:13 +00009
Georg Brandl86def6c2008-01-21 20:36:10 +000010import sys, os, time
Christian Heimes33fe8092008-04-13 13:53:33 +000011sys.path.append(os.path.abspath('tools/sphinxext'))
Georg Brandl86def6c2008-01-21 20:36:10 +000012
Christian Heimes2c181612007-12-17 20:04:13 +000013# General configuration
14# ---------------------
Georg Brandl116aa622007-08-15 14:28:22 +000015
Christian Heimesfe337bf2008-03-23 21:54:12 +000016extensions = ['sphinx.ext.refcounting', 'sphinx.ext.coverage',
Martin v. Löwis5680d0c2008-04-10 03:06:53 +000017 'sphinx.ext.doctest', 'pyspecific']
Georg Brandl45832ea2008-03-12 08:52:43 +000018templates_path = ['tools/sphinxext']
Christian Heimes26855632008-01-27 23:50:43 +000019
Christian Heimes679db4a2008-01-18 09:56:22 +000020# General substitutions.
21project = 'Python'
Georg Brandl86def6c2008-01-21 20:36:10 +000022copyright = '1990-%s, Python Software Foundation' % time.strftime('%Y')
Christian Heimes679db4a2008-01-18 09:56:22 +000023
Georg Brandl116aa622007-08-15 14:28:22 +000024# The default replacements for |version| and |release|.
Georg Brandl116aa622007-08-15 14:28:22 +000025#
26# The short X.Y version.
27# version = '2.6'
Georg Brandl116aa622007-08-15 14:28:22 +000028# The full version, including alpha/beta/rc tags.
29# release = '2.6a0'
Georg Brandl86def6c2008-01-21 20:36:10 +000030
31# We look for the Include/patchlevel.h file in the current Python source tree
32# and replace the values accordingly.
33import patchlevel
34version, release = patchlevel.get_version_info()
Georg Brandl116aa622007-08-15 14:28:22 +000035
36# There are two options for replacing |today|: either, you set today to some
37# non-false value, then it is used:
38today = ''
39# Else, today_fmt is used as the format for a strftime call.
40today_fmt = '%B %d, %Y'
41
Georg Brandl116aa622007-08-15 14:28:22 +000042# List of files that shouldn't be included in the build.
Christian Heimes3feef612008-02-11 06:19:17 +000043unused_docs = [
Christian Heimes3feef612008-02-11 06:19:17 +000044 'maclib/scrap',
45 'library/xmllib',
46 'library/xml.etree',
Georg Brandl116aa622007-08-15 14:28:22 +000047]
48
Christian Heimes679db4a2008-01-18 09:56:22 +000049# Relative filename of the reference count data file.
50refcount_file = 'data/refcounts.dat'
51
Georg Brandl116aa622007-08-15 14:28:22 +000052# If true, '()' will be appended to :func: etc. cross-reference text.
53add_function_parentheses = True
54
55# If true, the current module name will be prepended to all description
56# unit titles (such as .. function::).
57add_module_names = True
Christian Heimes2c181612007-12-17 20:04:13 +000058
Georg Brandl64063702008-09-09 19:10:58 +000059# By default, highlight as Python 3.
60highlight_language = 'python3'
61
Christian Heimes2c181612007-12-17 20:04:13 +000062
63# Options for HTML output
64# -----------------------
65
Christian Heimes2c181612007-12-17 20:04:13 +000066# If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
67# using the given strftime format.
68html_last_updated_fmt = '%b %d, %Y'
69
70# If true, SmartyPants will be used to convert quotes and dashes to
71# typographically correct entities.
72html_use_smartypants = True
73
Christian Heimes679db4a2008-01-18 09:56:22 +000074# Custom sidebar templates, filenames relative to this file.
75html_sidebars = {
Georg Brandl45832ea2008-03-12 08:52:43 +000076 'index': 'indexsidebar.html',
Christian Heimes679db4a2008-01-18 09:56:22 +000077}
78
79# Additional templates that should be rendered to pages.
80html_additional_pages = {
Georg Brandl45832ea2008-03-12 08:52:43 +000081 'download': 'download.html',
Christian Heimesa342c012008-04-20 21:01:16 +000082 'index': 'indexcontent.html',
Christian Heimes679db4a2008-01-18 09:56:22 +000083}
84
Georg Brandle7570052008-05-03 20:52:18 +000085# Output an OpenSearch description file.
86html_use_opensearch = 'http://docs.python.org/dev/3.0'
87
88# Additional static files.
89html_static_path = ['tools/sphinxext/static']
90
Christian Heimes679db4a2008-01-18 09:56:22 +000091# Output file base name for HTML help builder.
Christian Heimesb558a2e2008-03-02 22:46:37 +000092htmlhelp_basename = 'python' + release.replace('.', '')
Christian Heimes679db4a2008-01-18 09:56:22 +000093
Amaury Forgeot d'Arc35c86582008-06-17 21:11:29 +000094# Split the index
95html_split_index = True
96
Christian Heimes2c181612007-12-17 20:04:13 +000097
98# Options for LaTeX output
99# ------------------------
100
Christian Heimes679db4a2008-01-18 09:56:22 +0000101# The paper size ('letter' or 'a4').
102latex_paper_size = 'a4'
Christian Heimes2c181612007-12-17 20:04:13 +0000103
Christian Heimes679db4a2008-01-18 09:56:22 +0000104# The font size ('10pt', '11pt' or '12pt').
105latex_font_size = '10pt'
106
107# Grouping the document tree into LaTeX files. List of tuples
108# (source start file, target name, title, author, document class [howto/manual]).
109_stdauthor = r'Guido van Rossum\\Fred L. Drake, Jr., editor'
110latex_documents = [
Christian Heimes292d3512008-02-03 16:51:08 +0000111 ('c-api/index', 'c-api.tex',
Christian Heimes679db4a2008-01-18 09:56:22 +0000112 'The Python/C API', _stdauthor, 'manual'),
Christian Heimes292d3512008-02-03 16:51:08 +0000113 ('distutils/index', 'distutils.tex',
Christian Heimes679db4a2008-01-18 09:56:22 +0000114 'Distributing Python Modules', _stdauthor, 'manual'),
Christian Heimes292d3512008-02-03 16:51:08 +0000115 ('documenting/index', 'documenting.tex',
Christian Heimes679db4a2008-01-18 09:56:22 +0000116 'Documenting Python', 'Georg Brandl', 'manual'),
Christian Heimes292d3512008-02-03 16:51:08 +0000117 ('extending/index', 'extending.tex',
Christian Heimes679db4a2008-01-18 09:56:22 +0000118 'Extending and Embedding Python', _stdauthor, 'manual'),
Christian Heimes292d3512008-02-03 16:51:08 +0000119 ('install/index', 'install.tex',
Christian Heimes679db4a2008-01-18 09:56:22 +0000120 'Installing Python Modules', _stdauthor, 'manual'),
Christian Heimes292d3512008-02-03 16:51:08 +0000121 ('library/index', 'library.tex',
Christian Heimes679db4a2008-01-18 09:56:22 +0000122 'The Python Library Reference', _stdauthor, 'manual'),
Christian Heimes292d3512008-02-03 16:51:08 +0000123 ('reference/index', 'reference.tex',
Christian Heimes679db4a2008-01-18 09:56:22 +0000124 'The Python Language Reference', _stdauthor, 'manual'),
Christian Heimes292d3512008-02-03 16:51:08 +0000125 ('tutorial/index', 'tutorial.tex',
Christian Heimes679db4a2008-01-18 09:56:22 +0000126 'Python Tutorial', _stdauthor, 'manual'),
Christian Heimes292d3512008-02-03 16:51:08 +0000127 ('using/index', 'using.tex',
Christian Heimes679db4a2008-01-18 09:56:22 +0000128 'Using Python', _stdauthor, 'manual'),
Christian Heimes292d3512008-02-03 16:51:08 +0000129 ('whatsnew/' + version, 'whatsnew.tex',
Christian Heimes679db4a2008-01-18 09:56:22 +0000130 'What\'s New in Python', 'A. M. Kuchling', 'howto'),
131]
132# Collect all HOWTOs individually
Christian Heimes292d3512008-02-03 16:51:08 +0000133latex_documents.extend(('howto/' + fn[:-4], 'howto-' + fn[:-4] + '.tex',
Benjamin Petersonf608c612008-11-16 18:33:53 +0000134 '', _stdauthor, 'howto')
Christian Heimes679db4a2008-01-18 09:56:22 +0000135 for fn in os.listdir('howto')
136 if fn.endswith('.rst') and fn != 'index.rst')
137
138# Additional stuff for the LaTeX preamble.
139latex_preamble = r'''
140\authoraddress{
141 \strong{Python Software Foundation}\\
142 Email: \email{docs@python.org}
143}
Benjamin Peterson6cadba72008-11-19 22:38:29 +0000144\let\Verbatim=\OriginalVerbatim
145\let\endVerbatim=\endOriginalVerbatim
Christian Heimes679db4a2008-01-18 09:56:22 +0000146'''
147
148# Documents to append as an appendix to all manuals.
Christian Heimes292d3512008-02-03 16:51:08 +0000149latex_appendices = ['glossary', 'about', 'license', 'copyright']
Christian Heimesd3eb5a152008-02-24 00:38:49 +0000150
151# Options for the coverage checker
152# --------------------------------
153
154# The coverage checker will ignore all modules/functions/classes whose names
155# match any of the following regexes (using re.match).
156coverage_ignore_modules = [
157 r'[T|t][k|K]',
158 r'Tix',
159 r'distutils.*',
160]
161
162coverage_ignore_functions = [
163 'test($|_)',
164]
165
166coverage_ignore_classes = [
167]
168
169# Glob patterns for C source files for C API coverage, relative to this directory.
170coverage_c_path = [
171 '../Include/*.h',
172]
173
174# Regexes to find C items in the source files.
175coverage_c_regexes = {
176 'cfunction': (r'^PyAPI_FUNC\(.*\)\s+([^_][\w_]+)'),
177 'data': (r'^PyAPI_DATA\(.*\)\s+([^_][\w_]+)'),
178 'macro': (r'^#define ([^_][\w_]+)\(.*\)[\s|\\]'),
179}
180
181# The coverage checker will ignore all C items whose names match these regexes
182# (using re.match) -- the keys must be the same as in coverage_c_regexes.
183coverage_ignore_c_items = {
184# 'cfunction': [...]
185}