blob: 9603b4b0e76bc3f6b884374741dbc7131e04644a [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
Benjamin Petersonfa0d7032009-06-01 22:42:33 +000049# Ignore .rst in Sphinx its self.
50exclude_trees = ['tools/sphinx']
51
Christian Heimes679db4a2008-01-18 09:56:22 +000052# Relative filename of the reference count data file.
53refcount_file = 'data/refcounts.dat'
54
Georg Brandl116aa622007-08-15 14:28:22 +000055# If true, '()' will be appended to :func: etc. cross-reference text.
56add_function_parentheses = True
57
58# If true, the current module name will be prepended to all description
59# unit titles (such as .. function::).
60add_module_names = True
Christian Heimes2c181612007-12-17 20:04:13 +000061
Georg Brandl64063702008-09-09 19:10:58 +000062# By default, highlight as Python 3.
63highlight_language = 'python3'
64
Christian Heimes2c181612007-12-17 20:04:13 +000065
66# Options for HTML output
67# -----------------------
68
Christian Heimes2c181612007-12-17 20:04:13 +000069# If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
70# using the given strftime format.
71html_last_updated_fmt = '%b %d, %Y'
72
73# If true, SmartyPants will be used to convert quotes and dashes to
74# typographically correct entities.
75html_use_smartypants = True
76
Christian Heimes679db4a2008-01-18 09:56:22 +000077# Custom sidebar templates, filenames relative to this file.
78html_sidebars = {
Georg Brandl45832ea2008-03-12 08:52:43 +000079 'index': 'indexsidebar.html',
Christian Heimes679db4a2008-01-18 09:56:22 +000080}
81
82# Additional templates that should be rendered to pages.
83html_additional_pages = {
Georg Brandl45832ea2008-03-12 08:52:43 +000084 'download': 'download.html',
Christian Heimesa342c012008-04-20 21:01:16 +000085 'index': 'indexcontent.html',
Christian Heimes679db4a2008-01-18 09:56:22 +000086}
87
Georg Brandle7570052008-05-03 20:52:18 +000088# Output an OpenSearch description file.
Benjamin Peterson00f85852009-10-01 00:10:50 +000089html_use_opensearch = 'http://docs.python.org/3.1'
Georg Brandle7570052008-05-03 20:52:18 +000090
91# Additional static files.
92html_static_path = ['tools/sphinxext/static']
93
Christian Heimes679db4a2008-01-18 09:56:22 +000094# Output file base name for HTML help builder.
Christian Heimesb558a2e2008-03-02 22:46:37 +000095htmlhelp_basename = 'python' + release.replace('.', '')
Christian Heimes679db4a2008-01-18 09:56:22 +000096
Amaury Forgeot d'Arc35c86582008-06-17 21:11:29 +000097# Split the index
98html_split_index = True
99
Christian Heimes2c181612007-12-17 20:04:13 +0000100
101# Options for LaTeX output
102# ------------------------
103
Christian Heimes679db4a2008-01-18 09:56:22 +0000104# The paper size ('letter' or 'a4').
105latex_paper_size = 'a4'
Christian Heimes2c181612007-12-17 20:04:13 +0000106
Christian Heimes679db4a2008-01-18 09:56:22 +0000107# The font size ('10pt', '11pt' or '12pt').
108latex_font_size = '10pt'
109
110# Grouping the document tree into LaTeX files. List of tuples
111# (source start file, target name, title, author, document class [howto/manual]).
112_stdauthor = r'Guido van Rossum\\Fred L. Drake, Jr., editor'
113latex_documents = [
Christian Heimes292d3512008-02-03 16:51:08 +0000114 ('c-api/index', 'c-api.tex',
Christian Heimes679db4a2008-01-18 09:56:22 +0000115 'The Python/C API', _stdauthor, 'manual'),
Christian Heimes292d3512008-02-03 16:51:08 +0000116 ('distutils/index', 'distutils.tex',
Christian Heimes679db4a2008-01-18 09:56:22 +0000117 'Distributing Python Modules', _stdauthor, 'manual'),
Christian Heimes292d3512008-02-03 16:51:08 +0000118 ('documenting/index', 'documenting.tex',
Christian Heimes679db4a2008-01-18 09:56:22 +0000119 'Documenting Python', 'Georg Brandl', 'manual'),
Christian Heimes292d3512008-02-03 16:51:08 +0000120 ('extending/index', 'extending.tex',
Christian Heimes679db4a2008-01-18 09:56:22 +0000121 'Extending and Embedding Python', _stdauthor, 'manual'),
Christian Heimes292d3512008-02-03 16:51:08 +0000122 ('install/index', 'install.tex',
Christian Heimes679db4a2008-01-18 09:56:22 +0000123 'Installing Python Modules', _stdauthor, 'manual'),
Christian Heimes292d3512008-02-03 16:51:08 +0000124 ('library/index', 'library.tex',
Christian Heimes679db4a2008-01-18 09:56:22 +0000125 'The Python Library Reference', _stdauthor, 'manual'),
Christian Heimes292d3512008-02-03 16:51:08 +0000126 ('reference/index', 'reference.tex',
Christian Heimes679db4a2008-01-18 09:56:22 +0000127 'The Python Language Reference', _stdauthor, 'manual'),
Christian Heimes292d3512008-02-03 16:51:08 +0000128 ('tutorial/index', 'tutorial.tex',
Christian Heimes679db4a2008-01-18 09:56:22 +0000129 'Python Tutorial', _stdauthor, 'manual'),
Christian Heimes292d3512008-02-03 16:51:08 +0000130 ('using/index', 'using.tex',
Raymond Hettinger2f6bd272010-09-01 22:52:25 +0000131 'Python Setup', _stdauthor, 'manual'),
Christian Heimes292d3512008-02-03 16:51:08 +0000132 ('whatsnew/' + version, 'whatsnew.tex',
Christian Heimes679db4a2008-01-18 09:56:22 +0000133 'What\'s New in Python', 'A. M. Kuchling', 'howto'),
134]
135# Collect all HOWTOs individually
Christian Heimes292d3512008-02-03 16:51:08 +0000136latex_documents.extend(('howto/' + fn[:-4], 'howto-' + fn[:-4] + '.tex',
Benjamin Petersonf608c612008-11-16 18:33:53 +0000137 '', _stdauthor, 'howto')
Christian Heimes679db4a2008-01-18 09:56:22 +0000138 for fn in os.listdir('howto')
139 if fn.endswith('.rst') and fn != 'index.rst')
140
141# Additional stuff for the LaTeX preamble.
142latex_preamble = r'''
143\authoraddress{
144 \strong{Python Software Foundation}\\
145 Email: \email{docs@python.org}
146}
Benjamin Peterson6cadba72008-11-19 22:38:29 +0000147\let\Verbatim=\OriginalVerbatim
148\let\endVerbatim=\endOriginalVerbatim
Christian Heimes679db4a2008-01-18 09:56:22 +0000149'''
150
151# Documents to append as an appendix to all manuals.
Christian Heimes292d3512008-02-03 16:51:08 +0000152latex_appendices = ['glossary', 'about', 'license', 'copyright']
Christian Heimesd3eb5a152008-02-24 00:38:49 +0000153
Benjamin Petersona8332062009-09-11 22:36:27 +0000154# Get LaTeX to handle Unicode correctly
155latex_elements = {'inputenc': r'\usepackage[utf8x]{inputenc}'}
156
Christian Heimesd3eb5a152008-02-24 00:38:49 +0000157# Options for the coverage checker
158# --------------------------------
159
160# The coverage checker will ignore all modules/functions/classes whose names
161# match any of the following regexes (using re.match).
162coverage_ignore_modules = [
163 r'[T|t][k|K]',
164 r'Tix',
165 r'distutils.*',
166]
167
168coverage_ignore_functions = [
169 'test($|_)',
170]
171
172coverage_ignore_classes = [
173]
174
175# Glob patterns for C source files for C API coverage, relative to this directory.
176coverage_c_path = [
177 '../Include/*.h',
178]
179
180# Regexes to find C items in the source files.
181coverage_c_regexes = {
182 'cfunction': (r'^PyAPI_FUNC\(.*\)\s+([^_][\w_]+)'),
183 'data': (r'^PyAPI_DATA\(.*\)\s+([^_][\w_]+)'),
184 'macro': (r'^#define ([^_][\w_]+)\(.*\)[\s|\\]'),
185}
186
187# The coverage checker will ignore all C items whose names match these regexes
188# (using re.match) -- the keys must be the same as in coverage_c_regexes.
189coverage_ignore_c_items = {
190# 'cfunction': [...]
191}