blob: ce64f06198d9e294a91d3d52ad9efb54a45baa0a [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 Brandla0745232010-07-30 11:31:03 +000068html_theme = 'default'
69html_theme_options = {'collapsiblesidebar': True}
70
Christian Heimes2c181612007-12-17 20:04:13 +000071# If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
72# using the given strftime format.
73html_last_updated_fmt = '%b %d, %Y'
74
75# If true, SmartyPants will be used to convert quotes and dashes to
76# typographically correct entities.
77html_use_smartypants = True
78
Christian Heimes679db4a2008-01-18 09:56:22 +000079# Custom sidebar templates, filenames relative to this file.
80html_sidebars = {
Georg Brandl45832ea2008-03-12 08:52:43 +000081 'index': 'indexsidebar.html',
Christian Heimes679db4a2008-01-18 09:56:22 +000082}
83
84# Additional templates that should be rendered to pages.
85html_additional_pages = {
Georg Brandl45832ea2008-03-12 08:52:43 +000086 'download': 'download.html',
Christian Heimesa342c012008-04-20 21:01:16 +000087 'index': 'indexcontent.html',
Christian Heimes679db4a2008-01-18 09:56:22 +000088}
89
Georg Brandle7570052008-05-03 20:52:18 +000090# Output an OpenSearch description file.
Benjamin Petersonda181252009-10-01 00:57:32 +000091html_use_opensearch = 'http://docs.python.org/dev/py3k'
Georg Brandle7570052008-05-03 20:52:18 +000092
93# Additional static files.
94html_static_path = ['tools/sphinxext/static']
95
Christian Heimes679db4a2008-01-18 09:56:22 +000096# Output file base name for HTML help builder.
Christian Heimesb558a2e2008-03-02 22:46:37 +000097htmlhelp_basename = 'python' + release.replace('.', '')
Christian Heimes679db4a2008-01-18 09:56:22 +000098
Amaury Forgeot d'Arc35c86582008-06-17 21:11:29 +000099# Split the index
100html_split_index = True
101
Christian Heimes2c181612007-12-17 20:04:13 +0000102
103# Options for LaTeX output
104# ------------------------
105
Christian Heimes679db4a2008-01-18 09:56:22 +0000106# The paper size ('letter' or 'a4').
107latex_paper_size = 'a4'
Christian Heimes2c181612007-12-17 20:04:13 +0000108
Christian Heimes679db4a2008-01-18 09:56:22 +0000109# The font size ('10pt', '11pt' or '12pt').
110latex_font_size = '10pt'
111
112# Grouping the document tree into LaTeX files. List of tuples
113# (source start file, target name, title, author, document class [howto/manual]).
114_stdauthor = r'Guido van Rossum\\Fred L. Drake, Jr., editor'
115latex_documents = [
Christian Heimes292d3512008-02-03 16:51:08 +0000116 ('c-api/index', 'c-api.tex',
Christian Heimes679db4a2008-01-18 09:56:22 +0000117 'The Python/C API', _stdauthor, 'manual'),
Christian Heimes292d3512008-02-03 16:51:08 +0000118 ('distutils/index', 'distutils.tex',
Christian Heimes679db4a2008-01-18 09:56:22 +0000119 'Distributing Python Modules', _stdauthor, 'manual'),
Christian Heimes292d3512008-02-03 16:51:08 +0000120 ('documenting/index', 'documenting.tex',
Christian Heimes679db4a2008-01-18 09:56:22 +0000121 'Documenting Python', 'Georg Brandl', 'manual'),
Christian Heimes292d3512008-02-03 16:51:08 +0000122 ('extending/index', 'extending.tex',
Christian Heimes679db4a2008-01-18 09:56:22 +0000123 'Extending and Embedding Python', _stdauthor, 'manual'),
Christian Heimes292d3512008-02-03 16:51:08 +0000124 ('install/index', 'install.tex',
Christian Heimes679db4a2008-01-18 09:56:22 +0000125 'Installing Python Modules', _stdauthor, 'manual'),
Christian Heimes292d3512008-02-03 16:51:08 +0000126 ('library/index', 'library.tex',
Christian Heimes679db4a2008-01-18 09:56:22 +0000127 'The Python Library Reference', _stdauthor, 'manual'),
Christian Heimes292d3512008-02-03 16:51:08 +0000128 ('reference/index', 'reference.tex',
Christian Heimes679db4a2008-01-18 09:56:22 +0000129 'The Python Language Reference', _stdauthor, 'manual'),
Christian Heimes292d3512008-02-03 16:51:08 +0000130 ('tutorial/index', 'tutorial.tex',
Christian Heimes679db4a2008-01-18 09:56:22 +0000131 'Python Tutorial', _stdauthor, 'manual'),
Christian Heimes292d3512008-02-03 16:51:08 +0000132 ('using/index', 'using.tex',
Georg Brandl8d582162010-09-03 22:33:27 +0000133 'Python Setup and Usage', _stdauthor, 'manual'),
Georg Brandle5b5ff42010-11-12 06:19:48 +0000134 ('faq/index', 'faq.tex',
135 'Python Frequently Asked Questions', _stdauthor, 'manual'),
Christian Heimes292d3512008-02-03 16:51:08 +0000136 ('whatsnew/' + version, 'whatsnew.tex',
Christian Heimes679db4a2008-01-18 09:56:22 +0000137 'What\'s New in Python', 'A. M. Kuchling', 'howto'),
138]
139# Collect all HOWTOs individually
Christian Heimes292d3512008-02-03 16:51:08 +0000140latex_documents.extend(('howto/' + fn[:-4], 'howto-' + fn[:-4] + '.tex',
Benjamin Petersonf608c612008-11-16 18:33:53 +0000141 '', _stdauthor, 'howto')
Christian Heimes679db4a2008-01-18 09:56:22 +0000142 for fn in os.listdir('howto')
143 if fn.endswith('.rst') and fn != 'index.rst')
144
145# Additional stuff for the LaTeX preamble.
146latex_preamble = r'''
147\authoraddress{
148 \strong{Python Software Foundation}\\
149 Email: \email{docs@python.org}
150}
Benjamin Peterson6cadba72008-11-19 22:38:29 +0000151\let\Verbatim=\OriginalVerbatim
152\let\endVerbatim=\endOriginalVerbatim
Christian Heimes679db4a2008-01-18 09:56:22 +0000153'''
154
155# Documents to append as an appendix to all manuals.
Christian Heimes292d3512008-02-03 16:51:08 +0000156latex_appendices = ['glossary', 'about', 'license', 'copyright']
Christian Heimesd3eb5a152008-02-24 00:38:49 +0000157
Benjamin Peterson8719ad52009-09-11 22:24:02 +0000158# Get LaTeX to handle Unicode correctly
Georg Brandl4bf70682010-07-27 18:19:21 +0000159latex_elements = {'inputenc': r'\usepackage[utf8x]{inputenc}', 'utf8extra': ''}
Benjamin Peterson8719ad52009-09-11 22:24:02 +0000160
Christian Heimesd3eb5a152008-02-24 00:38:49 +0000161# Options for the coverage checker
162# --------------------------------
163
164# The coverage checker will ignore all modules/functions/classes whose names
165# match any of the following regexes (using re.match).
166coverage_ignore_modules = [
167 r'[T|t][k|K]',
168 r'Tix',
169 r'distutils.*',
170]
171
172coverage_ignore_functions = [
173 'test($|_)',
174]
175
176coverage_ignore_classes = [
177]
178
179# Glob patterns for C source files for C API coverage, relative to this directory.
180coverage_c_path = [
181 '../Include/*.h',
182]
183
184# Regexes to find C items in the source files.
185coverage_c_regexes = {
186 'cfunction': (r'^PyAPI_FUNC\(.*\)\s+([^_][\w_]+)'),
187 'data': (r'^PyAPI_DATA\(.*\)\s+([^_][\w_]+)'),
188 'macro': (r'^#define ([^_][\w_]+)\(.*\)[\s|\\]'),
189}
190
191# The coverage checker will ignore all C items whose names match these regexes
192# (using re.match) -- the keys must be the same as in coverage_c_regexes.
193coverage_ignore_c_items = {
194# 'cfunction': [...]
195}