blob: 5939f7a907ff819e7632839f78572043acf67b1a [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',
Georg Brandl57a5e3f2010-10-06 08:54:16 +0000131 'Python Setup and Usage', _stdauthor, 'manual'),
Georg Brandlf65e25b2010-11-26 09:05:43 +0000132 ('faq/index', 'faq.tex',
133 'Python Frequently Asked Questions', _stdauthor, 'manual'),
Christian Heimes292d3512008-02-03 16:51:08 +0000134 ('whatsnew/' + version, 'whatsnew.tex',
Christian Heimes679db4a2008-01-18 09:56:22 +0000135 'What\'s New in Python', 'A. M. Kuchling', 'howto'),
136]
137# Collect all HOWTOs individually
Christian Heimes292d3512008-02-03 16:51:08 +0000138latex_documents.extend(('howto/' + fn[:-4], 'howto-' + fn[:-4] + '.tex',
Benjamin Petersonf608c612008-11-16 18:33:53 +0000139 '', _stdauthor, 'howto')
Christian Heimes679db4a2008-01-18 09:56:22 +0000140 for fn in os.listdir('howto')
141 if fn.endswith('.rst') and fn != 'index.rst')
142
143# Additional stuff for the LaTeX preamble.
144latex_preamble = r'''
145\authoraddress{
146 \strong{Python Software Foundation}\\
147 Email: \email{docs@python.org}
148}
Benjamin Peterson6cadba72008-11-19 22:38:29 +0000149\let\Verbatim=\OriginalVerbatim
150\let\endVerbatim=\endOriginalVerbatim
Christian Heimes679db4a2008-01-18 09:56:22 +0000151'''
152
153# Documents to append as an appendix to all manuals.
Christian Heimes292d3512008-02-03 16:51:08 +0000154latex_appendices = ['glossary', 'about', 'license', 'copyright']
Christian Heimesd3eb5a152008-02-24 00:38:49 +0000155
Benjamin Petersona8332062009-09-11 22:36:27 +0000156# Get LaTeX to handle Unicode correctly
157latex_elements = {'inputenc': r'\usepackage[utf8x]{inputenc}'}
158
Christian Heimesd3eb5a152008-02-24 00:38:49 +0000159# Options for the coverage checker
160# --------------------------------
161
162# The coverage checker will ignore all modules/functions/classes whose names
163# match any of the following regexes (using re.match).
164coverage_ignore_modules = [
165 r'[T|t][k|K]',
166 r'Tix',
167 r'distutils.*',
168]
169
170coverage_ignore_functions = [
171 'test($|_)',
172]
173
174coverage_ignore_classes = [
175]
176
177# Glob patterns for C source files for C API coverage, relative to this directory.
178coverage_c_path = [
179 '../Include/*.h',
180]
181
182# Regexes to find C items in the source files.
183coverage_c_regexes = {
184 'cfunction': (r'^PyAPI_FUNC\(.*\)\s+([^_][\w_]+)'),
185 'data': (r'^PyAPI_DATA\(.*\)\s+([^_][\w_]+)'),
186 'macro': (r'^#define ([^_][\w_]+)\(.*\)[\s|\\]'),
187}
188
189# The coverage checker will ignore all C items whose names match these regexes
190# (using re.match) -- the keys must be the same as in coverage_c_regexes.
191coverage_ignore_c_items = {
192# 'cfunction': [...]
193}