Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1 | # |
| 2 | # Python documentation build configuration file |
| 3 | # |
Christian Heimes | 679db4a | 2008-01-18 09:56:22 +0000 | [diff] [blame] | 4 | # This file is execfile()d with the current directory set to its containing dir. |
| 5 | # |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 6 | # 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 Heimes | 2c18161 | 2007-12-17 20:04:13 +0000 | [diff] [blame] | 8 | |
Georg Brandl | 86def6c | 2008-01-21 20:36:10 +0000 | [diff] [blame] | 9 | import sys, os, time |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 10 | sys.path.append(os.path.abspath('tools/sphinxext')) |
Georg Brandl | 86def6c | 2008-01-21 20:36:10 +0000 | [diff] [blame] | 11 | |
Christian Heimes | 2c18161 | 2007-12-17 20:04:13 +0000 | [diff] [blame] | 12 | # General configuration |
| 13 | # --------------------- |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 14 | |
Christian Heimes | fe337bf | 2008-03-23 21:54:12 +0000 | [diff] [blame] | 15 | extensions = ['sphinx.ext.refcounting', 'sphinx.ext.coverage', |
Martin v. Löwis | 5680d0c | 2008-04-10 03:06:53 +0000 | [diff] [blame] | 16 | 'sphinx.ext.doctest', 'pyspecific'] |
Georg Brandl | 45832ea | 2008-03-12 08:52:43 +0000 | [diff] [blame] | 17 | templates_path = ['tools/sphinxext'] |
Christian Heimes | 2685563 | 2008-01-27 23:50:43 +0000 | [diff] [blame] | 18 | |
Christian Heimes | 679db4a | 2008-01-18 09:56:22 +0000 | [diff] [blame] | 19 | # General substitutions. |
| 20 | project = 'Python' |
Georg Brandl | 86def6c | 2008-01-21 20:36:10 +0000 | [diff] [blame] | 21 | copyright = '1990-%s, Python Software Foundation' % time.strftime('%Y') |
Christian Heimes | 679db4a | 2008-01-18 09:56:22 +0000 | [diff] [blame] | 22 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 23 | # The default replacements for |version| and |release|. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 24 | # |
| 25 | # The short X.Y version. |
| 26 | # version = '2.6' |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 27 | # The full version, including alpha/beta/rc tags. |
| 28 | # release = '2.6a0' |
Georg Brandl | 86def6c | 2008-01-21 20:36:10 +0000 | [diff] [blame] | 29 | |
| 30 | # We look for the Include/patchlevel.h file in the current Python source tree |
| 31 | # and replace the values accordingly. |
| 32 | import patchlevel |
| 33 | version, release = patchlevel.get_version_info() |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 34 | |
| 35 | # There are two options for replacing |today|: either, you set today to some |
| 36 | # non-false value, then it is used: |
| 37 | today = '' |
| 38 | # Else, today_fmt is used as the format for a strftime call. |
| 39 | today_fmt = '%B %d, %Y' |
| 40 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 41 | # List of files that shouldn't be included in the build. |
Christian Heimes | 3feef61 | 2008-02-11 06:19:17 +0000 | [diff] [blame] | 42 | unused_docs = [ |
Christian Heimes | 3feef61 | 2008-02-11 06:19:17 +0000 | [diff] [blame] | 43 | 'maclib/scrap', |
| 44 | 'library/xmllib', |
| 45 | 'library/xml.etree', |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 46 | ] |
| 47 | |
Benjamin Peterson | fa0d703 | 2009-06-01 22:42:33 +0000 | [diff] [blame] | 48 | # Ignore .rst in Sphinx its self. |
| 49 | exclude_trees = ['tools/sphinx'] |
| 50 | |
Christian Heimes | 679db4a | 2008-01-18 09:56:22 +0000 | [diff] [blame] | 51 | # Relative filename of the reference count data file. |
| 52 | refcount_file = 'data/refcounts.dat' |
| 53 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 54 | # If true, '()' will be appended to :func: etc. cross-reference text. |
| 55 | add_function_parentheses = True |
| 56 | |
| 57 | # If true, the current module name will be prepended to all description |
| 58 | # unit titles (such as .. function::). |
| 59 | add_module_names = True |
Christian Heimes | 2c18161 | 2007-12-17 20:04:13 +0000 | [diff] [blame] | 60 | |
Georg Brandl | 6406370 | 2008-09-09 19:10:58 +0000 | [diff] [blame] | 61 | # By default, highlight as Python 3. |
| 62 | highlight_language = 'python3' |
| 63 | |
Christian Heimes | 2c18161 | 2007-12-17 20:04:13 +0000 | [diff] [blame] | 64 | |
| 65 | # Options for HTML output |
| 66 | # ----------------------- |
| 67 | |
Georg Brandl | ab71214 | 2012-03-25 20:31:57 +0200 | [diff] [blame] | 68 | html_theme = 'pydoctheme' |
| 69 | html_theme_path = ['tools/sphinxext'] |
Georg Brandl | a074523 | 2010-07-30 11:31:03 +0000 | [diff] [blame] | 70 | html_theme_options = {'collapsiblesidebar': True} |
| 71 | |
Georg Brandl | ab71214 | 2012-03-25 20:31:57 +0200 | [diff] [blame] | 72 | html_short_title = '%s Documentation' % release |
| 73 | |
Christian Heimes | 2c18161 | 2007-12-17 20:04:13 +0000 | [diff] [blame] | 74 | # If not '', a 'Last updated on:' timestamp is inserted at every page bottom, |
| 75 | # using the given strftime format. |
| 76 | html_last_updated_fmt = '%b %d, %Y' |
| 77 | |
| 78 | # If true, SmartyPants will be used to convert quotes and dashes to |
| 79 | # typographically correct entities. |
| 80 | html_use_smartypants = True |
| 81 | |
Christian Heimes | 679db4a | 2008-01-18 09:56:22 +0000 | [diff] [blame] | 82 | # Custom sidebar templates, filenames relative to this file. |
| 83 | html_sidebars = { |
Georg Brandl | 45832ea | 2008-03-12 08:52:43 +0000 | [diff] [blame] | 84 | 'index': 'indexsidebar.html', |
Christian Heimes | 679db4a | 2008-01-18 09:56:22 +0000 | [diff] [blame] | 85 | } |
| 86 | |
| 87 | # Additional templates that should be rendered to pages. |
| 88 | html_additional_pages = { |
Georg Brandl | 45832ea | 2008-03-12 08:52:43 +0000 | [diff] [blame] | 89 | 'download': 'download.html', |
Christian Heimes | a342c01 | 2008-04-20 21:01:16 +0000 | [diff] [blame] | 90 | 'index': 'indexcontent.html', |
Christian Heimes | 679db4a | 2008-01-18 09:56:22 +0000 | [diff] [blame] | 91 | } |
| 92 | |
Georg Brandl | e757005 | 2008-05-03 20:52:18 +0000 | [diff] [blame] | 93 | # Output an OpenSearch description file. |
Georg Brandl | 014397e | 2012-04-07 19:24:40 +0200 | [diff] [blame] | 94 | html_use_opensearch = 'http://docs.python.org/' + version |
Georg Brandl | e757005 | 2008-05-03 20:52:18 +0000 | [diff] [blame] | 95 | |
| 96 | # Additional static files. |
| 97 | html_static_path = ['tools/sphinxext/static'] |
| 98 | |
Christian Heimes | 679db4a | 2008-01-18 09:56:22 +0000 | [diff] [blame] | 99 | # Output file base name for HTML help builder. |
Christian Heimes | b558a2e | 2008-03-02 22:46:37 +0000 | [diff] [blame] | 100 | htmlhelp_basename = 'python' + release.replace('.', '') |
Christian Heimes | 679db4a | 2008-01-18 09:56:22 +0000 | [diff] [blame] | 101 | |
Amaury Forgeot d'Arc | 35c8658 | 2008-06-17 21:11:29 +0000 | [diff] [blame] | 102 | # Split the index |
| 103 | html_split_index = True |
| 104 | |
Christian Heimes | 2c18161 | 2007-12-17 20:04:13 +0000 | [diff] [blame] | 105 | |
| 106 | # Options for LaTeX output |
| 107 | # ------------------------ |
| 108 | |
Christian Heimes | 679db4a | 2008-01-18 09:56:22 +0000 | [diff] [blame] | 109 | # The paper size ('letter' or 'a4'). |
| 110 | latex_paper_size = 'a4' |
Christian Heimes | 2c18161 | 2007-12-17 20:04:13 +0000 | [diff] [blame] | 111 | |
Christian Heimes | 679db4a | 2008-01-18 09:56:22 +0000 | [diff] [blame] | 112 | # The font size ('10pt', '11pt' or '12pt'). |
| 113 | latex_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' |
| 118 | latex_documents = [ |
Christian Heimes | 292d351 | 2008-02-03 16:51:08 +0000 | [diff] [blame] | 119 | ('c-api/index', 'c-api.tex', |
Christian Heimes | 679db4a | 2008-01-18 09:56:22 +0000 | [diff] [blame] | 120 | 'The Python/C API', _stdauthor, 'manual'), |
Christian Heimes | 292d351 | 2008-02-03 16:51:08 +0000 | [diff] [blame] | 121 | ('distutils/index', 'distutils.tex', |
Christian Heimes | 679db4a | 2008-01-18 09:56:22 +0000 | [diff] [blame] | 122 | 'Distributing Python Modules', _stdauthor, 'manual'), |
Christian Heimes | 292d351 | 2008-02-03 16:51:08 +0000 | [diff] [blame] | 123 | ('extending/index', 'extending.tex', |
Christian Heimes | 679db4a | 2008-01-18 09:56:22 +0000 | [diff] [blame] | 124 | 'Extending and Embedding Python', _stdauthor, 'manual'), |
Christian Heimes | 292d351 | 2008-02-03 16:51:08 +0000 | [diff] [blame] | 125 | ('install/index', 'install.tex', |
Christian Heimes | 679db4a | 2008-01-18 09:56:22 +0000 | [diff] [blame] | 126 | 'Installing Python Modules', _stdauthor, 'manual'), |
Christian Heimes | 292d351 | 2008-02-03 16:51:08 +0000 | [diff] [blame] | 127 | ('library/index', 'library.tex', |
Christian Heimes | 679db4a | 2008-01-18 09:56:22 +0000 | [diff] [blame] | 128 | 'The Python Library Reference', _stdauthor, 'manual'), |
Christian Heimes | 292d351 | 2008-02-03 16:51:08 +0000 | [diff] [blame] | 129 | ('reference/index', 'reference.tex', |
Christian Heimes | 679db4a | 2008-01-18 09:56:22 +0000 | [diff] [blame] | 130 | 'The Python Language Reference', _stdauthor, 'manual'), |
Christian Heimes | 292d351 | 2008-02-03 16:51:08 +0000 | [diff] [blame] | 131 | ('tutorial/index', 'tutorial.tex', |
Christian Heimes | 679db4a | 2008-01-18 09:56:22 +0000 | [diff] [blame] | 132 | 'Python Tutorial', _stdauthor, 'manual'), |
Christian Heimes | 292d351 | 2008-02-03 16:51:08 +0000 | [diff] [blame] | 133 | ('using/index', 'using.tex', |
Georg Brandl | 8d58216 | 2010-09-03 22:33:27 +0000 | [diff] [blame] | 134 | 'Python Setup and Usage', _stdauthor, 'manual'), |
Georg Brandl | e5b5ff4 | 2010-11-12 06:19:48 +0000 | [diff] [blame] | 135 | ('faq/index', 'faq.tex', |
| 136 | 'Python Frequently Asked Questions', _stdauthor, 'manual'), |
Christian Heimes | 292d351 | 2008-02-03 16:51:08 +0000 | [diff] [blame] | 137 | ('whatsnew/' + version, 'whatsnew.tex', |
Christian Heimes | 679db4a | 2008-01-18 09:56:22 +0000 | [diff] [blame] | 138 | 'What\'s New in Python', 'A. M. Kuchling', 'howto'), |
| 139 | ] |
| 140 | # Collect all HOWTOs individually |
Christian Heimes | 292d351 | 2008-02-03 16:51:08 +0000 | [diff] [blame] | 141 | latex_documents.extend(('howto/' + fn[:-4], 'howto-' + fn[:-4] + '.tex', |
Benjamin Peterson | f608c61 | 2008-11-16 18:33:53 +0000 | [diff] [blame] | 142 | '', _stdauthor, 'howto') |
Christian Heimes | 679db4a | 2008-01-18 09:56:22 +0000 | [diff] [blame] | 143 | for fn in os.listdir('howto') |
| 144 | if fn.endswith('.rst') and fn != 'index.rst') |
| 145 | |
| 146 | # Additional stuff for the LaTeX preamble. |
| 147 | latex_preamble = r''' |
| 148 | \authoraddress{ |
| 149 | \strong{Python Software Foundation}\\ |
| 150 | Email: \email{docs@python.org} |
| 151 | } |
Benjamin Peterson | 6cadba7 | 2008-11-19 22:38:29 +0000 | [diff] [blame] | 152 | \let\Verbatim=\OriginalVerbatim |
| 153 | \let\endVerbatim=\endOriginalVerbatim |
Christian Heimes | 679db4a | 2008-01-18 09:56:22 +0000 | [diff] [blame] | 154 | ''' |
| 155 | |
| 156 | # Documents to append as an appendix to all manuals. |
Christian Heimes | 292d351 | 2008-02-03 16:51:08 +0000 | [diff] [blame] | 157 | latex_appendices = ['glossary', 'about', 'license', 'copyright'] |
Christian Heimes | d3eb5a15 | 2008-02-24 00:38:49 +0000 | [diff] [blame] | 158 | |
Benjamin Peterson | 8719ad5 | 2009-09-11 22:24:02 +0000 | [diff] [blame] | 159 | # Get LaTeX to handle Unicode correctly |
Georg Brandl | 4bf7068 | 2010-07-27 18:19:21 +0000 | [diff] [blame] | 160 | latex_elements = {'inputenc': r'\usepackage[utf8x]{inputenc}', 'utf8extra': ''} |
Benjamin Peterson | 8719ad5 | 2009-09-11 22:24:02 +0000 | [diff] [blame] | 161 | |
Christian Heimes | d3eb5a15 | 2008-02-24 00:38:49 +0000 | [diff] [blame] | 162 | # 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). |
| 167 | coverage_ignore_modules = [ |
| 168 | r'[T|t][k|K]', |
| 169 | r'Tix', |
| 170 | r'distutils.*', |
| 171 | ] |
| 172 | |
| 173 | coverage_ignore_functions = [ |
| 174 | 'test($|_)', |
| 175 | ] |
| 176 | |
| 177 | coverage_ignore_classes = [ |
| 178 | ] |
| 179 | |
| 180 | # Glob patterns for C source files for C API coverage, relative to this directory. |
| 181 | coverage_c_path = [ |
| 182 | '../Include/*.h', |
| 183 | ] |
| 184 | |
| 185 | # Regexes to find C items in the source files. |
| 186 | coverage_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. |
| 194 | coverage_ignore_c_items = { |
| 195 | # 'cfunction': [...] |
| 196 | } |