Alex Gaynor | c62e91f | 2013-08-06 19:25:52 -0700 | [diff] [blame] | 1 | # -*- coding: utf-8 -*- |
Alex Gaynor | c37feed | 2014-03-08 08:32:56 -0800 | [diff] [blame] | 2 | |
Alex Gaynor | 5951f46 | 2014-11-16 09:08:42 -0800 | [diff] [blame] | 3 | # This file is dual licensed under the terms of the Apache License, Version |
| 4 | # 2.0, and the BSD License. See the LICENSE file in the root of this repository |
| 5 | # for complete details. |
Alex Gaynor | c37feed | 2014-03-08 08:32:56 -0800 | [diff] [blame] | 6 | |
Alex Gaynor | c62e91f | 2013-08-06 19:25:52 -0700 | [diff] [blame] | 7 | # |
| 8 | # Cryptography documentation build configuration file, created by |
| 9 | # sphinx-quickstart on Tue Aug 6 19:19:14 2013. |
| 10 | # |
Alex Gaynor | d21da67 | 2013-08-07 08:12:16 -0700 | [diff] [blame] | 11 | # This file is execfile()d with the current directory set to its containing dir |
Alex Gaynor | c62e91f | 2013-08-06 19:25:52 -0700 | [diff] [blame] | 12 | # |
| 13 | # Note that not all possible configuration values are present in this |
| 14 | # autogenerated file. |
| 15 | # |
| 16 | # All configuration values have a default; values that are commented out |
| 17 | # serve to show the default. |
| 18 | |
Alex Gaynor | c37feed | 2014-03-08 08:32:56 -0800 | [diff] [blame] | 19 | from __future__ import absolute_import, division, print_function |
| 20 | |
Alex Gaynor | af82d5e | 2013-10-29 17:07:24 -0700 | [diff] [blame] | 21 | import os |
| 22 | import sys |
| 23 | |
Alex Gaynor | 27283cf | 2013-11-08 10:49:22 -0800 | [diff] [blame] | 24 | try: |
| 25 | import sphinx_rtd_theme |
| 26 | except ImportError: |
| 27 | sphinx_rtd_theme = None |
| 28 | |
Alex Gaynor | eb656bd | 2014-01-16 14:43:37 -0600 | [diff] [blame] | 29 | try: |
| 30 | from sphinxcontrib import spelling |
| 31 | except ImportError: |
| 32 | spelling = None |
| 33 | |
Alex Gaynor | 27283cf | 2013-11-08 10:49:22 -0800 | [diff] [blame] | 34 | |
Alex Gaynor | c62e91f | 2013-08-06 19:25:52 -0700 | [diff] [blame] | 35 | # If extensions (or modules to document with autodoc) are in another directory, |
| 36 | # add these directories to sys.path here. If the directory is relative to the |
| 37 | # documentation root, use os.path.abspath to make it absolute, like shown here. |
Alex Gaynor | af82d5e | 2013-10-29 17:07:24 -0700 | [diff] [blame] | 38 | sys.path.insert(0, os.path.abspath('.')) |
Alex Gaynor | c62e91f | 2013-08-06 19:25:52 -0700 | [diff] [blame] | 39 | |
Alex Gaynor | d21da67 | 2013-08-07 08:12:16 -0700 | [diff] [blame] | 40 | # -- General configuration ---------------------------------------------------- |
Alex Gaynor | c62e91f | 2013-08-06 19:25:52 -0700 | [diff] [blame] | 41 | |
| 42 | # If your documentation needs a minimal Sphinx version, state it here. |
Alex Gaynor | ffcf3b1 | 2014-03-26 13:10:10 -0700 | [diff] [blame] | 43 | # needs_sphinx = '1.0' |
Alex Gaynor | c62e91f | 2013-08-06 19:25:52 -0700 | [diff] [blame] | 44 | |
Alex Gaynor | d21da67 | 2013-08-07 08:12:16 -0700 | [diff] [blame] | 45 | # Add any Sphinx extension module names here, as strings. They can be |
| 46 | # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom ones. |
| 47 | extensions = [ |
| 48 | 'sphinx.ext.autodoc', |
Donald Stufft | 235fa71 | 2013-08-11 17:47:17 -0400 | [diff] [blame] | 49 | 'sphinx.ext.doctest', |
Alex Gaynor | d21da67 | 2013-08-07 08:12:16 -0700 | [diff] [blame] | 50 | 'sphinx.ext.intersphinx', |
| 51 | 'sphinx.ext.viewcode', |
Alex Gaynor | af82d5e | 2013-10-29 17:07:24 -0700 | [diff] [blame] | 52 | 'cryptography-docs', |
Alex Gaynor | d21da67 | 2013-08-07 08:12:16 -0700 | [diff] [blame] | 53 | ] |
Alex Gaynor | c62e91f | 2013-08-06 19:25:52 -0700 | [diff] [blame] | 54 | |
Alex Gaynor | eb656bd | 2014-01-16 14:43:37 -0600 | [diff] [blame] | 55 | if spelling is not None: |
| 56 | extensions.append('sphinxcontrib.spelling') |
| 57 | |
Alex Gaynor | c62e91f | 2013-08-06 19:25:52 -0700 | [diff] [blame] | 58 | # Add any paths that contain templates here, relative to this directory. |
| 59 | templates_path = ['_templates'] |
| 60 | |
| 61 | # The suffix of source filenames. |
| 62 | source_suffix = '.rst' |
| 63 | |
| 64 | # The encoding of source files. |
Alex Gaynor | ffcf3b1 | 2014-03-26 13:10:10 -0700 | [diff] [blame] | 65 | # source_encoding = 'utf-8-sig' |
Alex Gaynor | c62e91f | 2013-08-06 19:25:52 -0700 | [diff] [blame] | 66 | |
| 67 | # The master toctree document. |
| 68 | master_doc = 'index' |
| 69 | |
| 70 | # General information about the project. |
Alex Gaynor | c113c3b | 2013-08-07 08:36:20 -0700 | [diff] [blame] | 71 | project = 'Cryptography' |
Alex Gaynor | 9f6aa0f | 2015-01-08 11:00:45 -0800 | [diff] [blame] | 72 | copyright = '2013-2015, Individual Contributors' |
Alex Gaynor | c62e91f | 2013-08-06 19:25:52 -0700 | [diff] [blame] | 73 | |
| 74 | # The version info for the project you're documenting, acts as replacement for |
| 75 | # |version| and |release|, also used in various other places throughout the |
| 76 | # built documents. |
| 77 | # |
Alex Gaynor | 2b22fae | 2014-01-06 13:19:33 -0800 | [diff] [blame] | 78 | |
| 79 | base_dir = os.path.join(os.path.dirname(__file__), os.pardir) |
| 80 | about = {} |
Donald Stufft | c62a78c | 2014-11-07 19:17:08 -0500 | [diff] [blame] | 81 | with open(os.path.join(base_dir, "src", "cryptography", "__about__.py")) as f: |
Alex Gaynor | 2b22fae | 2014-01-06 13:19:33 -0800 | [diff] [blame] | 82 | exec(f.read(), about) |
| 83 | |
| 84 | version = release = about["__version__"] |
Alex Gaynor | c62e91f | 2013-08-06 19:25:52 -0700 | [diff] [blame] | 85 | |
| 86 | # The language for content autogenerated by Sphinx. Refer to documentation |
| 87 | # for a list of supported languages. |
Alex Gaynor | ffcf3b1 | 2014-03-26 13:10:10 -0700 | [diff] [blame] | 88 | # language = None |
Alex Gaynor | c62e91f | 2013-08-06 19:25:52 -0700 | [diff] [blame] | 89 | |
| 90 | # There are two options for replacing |today|: either, you set today to some |
| 91 | # non-false value, then it is used: |
Alex Gaynor | ffcf3b1 | 2014-03-26 13:10:10 -0700 | [diff] [blame] | 92 | # today = '' |
Alex Gaynor | c62e91f | 2013-08-06 19:25:52 -0700 | [diff] [blame] | 93 | # Else, today_fmt is used as the format for a strftime call. |
Alex Gaynor | ffcf3b1 | 2014-03-26 13:10:10 -0700 | [diff] [blame] | 94 | # today_fmt = '%B %d, %Y' |
Alex Gaynor | c62e91f | 2013-08-06 19:25:52 -0700 | [diff] [blame] | 95 | |
| 96 | # List of patterns, relative to source directory, that match files and |
| 97 | # directories to ignore when looking for source files. |
| 98 | exclude_patterns = ['_build'] |
| 99 | |
Alex Gaynor | d21da67 | 2013-08-07 08:12:16 -0700 | [diff] [blame] | 100 | # The reST default role (used for this markup: `text`) to use for all documents |
Alex Gaynor | ffcf3b1 | 2014-03-26 13:10:10 -0700 | [diff] [blame] | 101 | # default_role = None |
Alex Gaynor | c62e91f | 2013-08-06 19:25:52 -0700 | [diff] [blame] | 102 | |
| 103 | # If true, '()' will be appended to :func: etc. cross-reference text. |
Alex Gaynor | ffcf3b1 | 2014-03-26 13:10:10 -0700 | [diff] [blame] | 104 | # add_function_parentheses = True |
Alex Gaynor | c62e91f | 2013-08-06 19:25:52 -0700 | [diff] [blame] | 105 | |
| 106 | # If true, the current module name will be prepended to all description |
| 107 | # unit titles (such as .. function::). |
Alex Gaynor | ffcf3b1 | 2014-03-26 13:10:10 -0700 | [diff] [blame] | 108 | # add_module_names = True |
Alex Gaynor | c62e91f | 2013-08-06 19:25:52 -0700 | [diff] [blame] | 109 | |
| 110 | # If true, sectionauthor and moduleauthor directives will be shown in the |
| 111 | # output. They are ignored by default. |
Alex Gaynor | ffcf3b1 | 2014-03-26 13:10:10 -0700 | [diff] [blame] | 112 | # show_authors = False |
Alex Gaynor | c62e91f | 2013-08-06 19:25:52 -0700 | [diff] [blame] | 113 | |
| 114 | # The name of the Pygments (syntax highlighting) style to use. |
| 115 | pygments_style = 'sphinx' |
| 116 | |
| 117 | # A list of ignored prefixes for module index sorting. |
Alex Gaynor | ffcf3b1 | 2014-03-26 13:10:10 -0700 | [diff] [blame] | 118 | # modindex_common_prefix = [] |
Alex Gaynor | c62e91f | 2013-08-06 19:25:52 -0700 | [diff] [blame] | 119 | |
| 120 | |
Alex Gaynor | d21da67 | 2013-08-07 08:12:16 -0700 | [diff] [blame] | 121 | # -- Options for HTML output -------------------------------------------------- |
Alex Gaynor | c62e91f | 2013-08-06 19:25:52 -0700 | [diff] [blame] | 122 | |
| 123 | # The theme to use for HTML and HTML Help pages. See the documentation for |
| 124 | # a list of builtin themes. |
Alex Gaynor | 27283cf | 2013-11-08 10:49:22 -0800 | [diff] [blame] | 125 | |
| 126 | if sphinx_rtd_theme: |
| 127 | html_theme = "sphinx_rtd_theme" |
| 128 | html_theme_path = [sphinx_rtd_theme.get_html_theme_path()] |
| 129 | else: |
| 130 | html_theme = "default" |
Alex Gaynor | c62e91f | 2013-08-06 19:25:52 -0700 | [diff] [blame] | 131 | |
| 132 | # Theme options are theme-specific and customize the look and feel of a theme |
| 133 | # further. For a list of options available for each theme, see the |
| 134 | # documentation. |
Alex Gaynor | ffcf3b1 | 2014-03-26 13:10:10 -0700 | [diff] [blame] | 135 | # html_theme_options = {} |
Alex Gaynor | c62e91f | 2013-08-06 19:25:52 -0700 | [diff] [blame] | 136 | |
Alex Gaynor | c62e91f | 2013-08-06 19:25:52 -0700 | [diff] [blame] | 137 | # The name for this set of Sphinx documents. If None, it defaults to |
| 138 | # "<project> v<release> documentation". |
Alex Gaynor | ffcf3b1 | 2014-03-26 13:10:10 -0700 | [diff] [blame] | 139 | # html_title = None |
Alex Gaynor | c62e91f | 2013-08-06 19:25:52 -0700 | [diff] [blame] | 140 | |
| 141 | # A shorter title for the navigation bar. Default is the same as html_title. |
Alex Gaynor | ffcf3b1 | 2014-03-26 13:10:10 -0700 | [diff] [blame] | 142 | # html_short_title = None |
Alex Gaynor | c62e91f | 2013-08-06 19:25:52 -0700 | [diff] [blame] | 143 | |
| 144 | # The name of an image file (relative to this directory) to place at the top |
| 145 | # of the sidebar. |
Alex Gaynor | ffcf3b1 | 2014-03-26 13:10:10 -0700 | [diff] [blame] | 146 | # html_logo = None |
Alex Gaynor | c62e91f | 2013-08-06 19:25:52 -0700 | [diff] [blame] | 147 | |
| 148 | # The name of an image file (within the static path) to use as favicon of the |
| 149 | # docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32 |
| 150 | # pixels large. |
Alex Gaynor | ffcf3b1 | 2014-03-26 13:10:10 -0700 | [diff] [blame] | 151 | # html_favicon = None |
Alex Gaynor | c62e91f | 2013-08-06 19:25:52 -0700 | [diff] [blame] | 152 | |
| 153 | # Add any paths that contain custom static files (such as style sheets) here, |
| 154 | # relative to this directory. They are copied after the builtin static files, |
| 155 | # so a file named "default.css" will overwrite the builtin "default.css". |
| 156 | html_static_path = ['_static'] |
| 157 | |
| 158 | # If not '', a 'Last updated on:' timestamp is inserted at every page bottom, |
| 159 | # using the given strftime format. |
Alex Gaynor | ffcf3b1 | 2014-03-26 13:10:10 -0700 | [diff] [blame] | 160 | # html_last_updated_fmt = '%b %d, %Y' |
Alex Gaynor | c62e91f | 2013-08-06 19:25:52 -0700 | [diff] [blame] | 161 | |
| 162 | # If true, SmartyPants will be used to convert quotes and dashes to |
| 163 | # typographically correct entities. |
Alex Gaynor | ffcf3b1 | 2014-03-26 13:10:10 -0700 | [diff] [blame] | 164 | # html_use_smartypants = True |
Alex Gaynor | c62e91f | 2013-08-06 19:25:52 -0700 | [diff] [blame] | 165 | |
| 166 | # Custom sidebar templates, maps document names to template names. |
Alex Gaynor | ffcf3b1 | 2014-03-26 13:10:10 -0700 | [diff] [blame] | 167 | # html_sidebars = {} |
Alex Gaynor | c62e91f | 2013-08-06 19:25:52 -0700 | [diff] [blame] | 168 | |
| 169 | # Additional templates that should be rendered to pages, maps page names to |
| 170 | # template names. |
Alex Gaynor | ffcf3b1 | 2014-03-26 13:10:10 -0700 | [diff] [blame] | 171 | # html_additional_pages = {} |
Alex Gaynor | c62e91f | 2013-08-06 19:25:52 -0700 | [diff] [blame] | 172 | |
| 173 | # If false, no module index is generated. |
Alex Gaynor | ffcf3b1 | 2014-03-26 13:10:10 -0700 | [diff] [blame] | 174 | # html_domain_indices = True |
Alex Gaynor | c62e91f | 2013-08-06 19:25:52 -0700 | [diff] [blame] | 175 | |
| 176 | # If false, no index is generated. |
Alex Gaynor | ffcf3b1 | 2014-03-26 13:10:10 -0700 | [diff] [blame] | 177 | # html_use_index = True |
Alex Gaynor | c62e91f | 2013-08-06 19:25:52 -0700 | [diff] [blame] | 178 | |
| 179 | # If true, the index is split into individual pages for each letter. |
Alex Gaynor | ffcf3b1 | 2014-03-26 13:10:10 -0700 | [diff] [blame] | 180 | # html_split_index = False |
Alex Gaynor | c62e91f | 2013-08-06 19:25:52 -0700 | [diff] [blame] | 181 | |
| 182 | # If true, links to the reST sources are added to the pages. |
Alex Gaynor | ffcf3b1 | 2014-03-26 13:10:10 -0700 | [diff] [blame] | 183 | # html_show_sourcelink = True |
Alex Gaynor | c62e91f | 2013-08-06 19:25:52 -0700 | [diff] [blame] | 184 | |
| 185 | # If true, "Created using Sphinx" is shown in the HTML footer. Default is True. |
Alex Gaynor | ffcf3b1 | 2014-03-26 13:10:10 -0700 | [diff] [blame] | 186 | # html_show_sphinx = True |
Alex Gaynor | c62e91f | 2013-08-06 19:25:52 -0700 | [diff] [blame] | 187 | |
| 188 | # If true, "(C) Copyright ..." is shown in the HTML footer. Default is True. |
Alex Gaynor | ffcf3b1 | 2014-03-26 13:10:10 -0700 | [diff] [blame] | 189 | # html_show_copyright = True |
Alex Gaynor | c62e91f | 2013-08-06 19:25:52 -0700 | [diff] [blame] | 190 | |
| 191 | # If true, an OpenSearch description file will be output, and all pages will |
| 192 | # contain a <link> tag referring to it. The value of this option must be the |
| 193 | # base URL from which the finished HTML is served. |
Alex Gaynor | ffcf3b1 | 2014-03-26 13:10:10 -0700 | [diff] [blame] | 194 | # html_use_opensearch = '' |
Alex Gaynor | c62e91f | 2013-08-06 19:25:52 -0700 | [diff] [blame] | 195 | |
| 196 | # This is the file name suffix for HTML files (e.g. ".xhtml"). |
Alex Gaynor | ffcf3b1 | 2014-03-26 13:10:10 -0700 | [diff] [blame] | 197 | # html_file_suffix = None |
Alex Gaynor | c62e91f | 2013-08-06 19:25:52 -0700 | [diff] [blame] | 198 | |
| 199 | # Output file base name for HTML help builder. |
| 200 | htmlhelp_basename = 'Cryptographydoc' |
| 201 | |
| 202 | |
Alex Gaynor | d21da67 | 2013-08-07 08:12:16 -0700 | [diff] [blame] | 203 | # -- Options for LaTeX output ------------------------------------------------- |
Alex Gaynor | c62e91f | 2013-08-06 19:25:52 -0700 | [diff] [blame] | 204 | |
| 205 | latex_elements = { |
Alex Gaynor | c62e91f | 2013-08-06 19:25:52 -0700 | [diff] [blame] | 206 | } |
| 207 | |
| 208 | # Grouping the document tree into LaTeX files. List of tuples |
Alex Gaynor | d21da67 | 2013-08-07 08:12:16 -0700 | [diff] [blame] | 209 | # (source start file, target name, title, author, documentclass [howto/manual]) |
Alex Gaynor | c62e91f | 2013-08-06 19:25:52 -0700 | [diff] [blame] | 210 | latex_documents = [ |
Alex Gaynor | c113c3b | 2013-08-07 08:36:20 -0700 | [diff] [blame] | 211 | ('index', 'Cryptography.tex', 'Cryptography Documentation', |
| 212 | 'Individual Contributors', 'manual'), |
Alex Gaynor | c62e91f | 2013-08-06 19:25:52 -0700 | [diff] [blame] | 213 | ] |
| 214 | |
| 215 | # The name of an image file (relative to this directory) to place at the top of |
| 216 | # the title page. |
Alex Gaynor | ffcf3b1 | 2014-03-26 13:10:10 -0700 | [diff] [blame] | 217 | # latex_logo = None |
Alex Gaynor | c62e91f | 2013-08-06 19:25:52 -0700 | [diff] [blame] | 218 | |
| 219 | # For "manual" documents, if this is true, then toplevel headings are parts, |
| 220 | # not chapters. |
Alex Gaynor | ffcf3b1 | 2014-03-26 13:10:10 -0700 | [diff] [blame] | 221 | # latex_use_parts = False |
Alex Gaynor | c62e91f | 2013-08-06 19:25:52 -0700 | [diff] [blame] | 222 | |
| 223 | # If true, show page references after internal links. |
Alex Gaynor | ffcf3b1 | 2014-03-26 13:10:10 -0700 | [diff] [blame] | 224 | # latex_show_pagerefs = False |
Alex Gaynor | c62e91f | 2013-08-06 19:25:52 -0700 | [diff] [blame] | 225 | |
| 226 | # If true, show URL addresses after external links. |
Alex Gaynor | ffcf3b1 | 2014-03-26 13:10:10 -0700 | [diff] [blame] | 227 | # latex_show_urls = False |
Alex Gaynor | c62e91f | 2013-08-06 19:25:52 -0700 | [diff] [blame] | 228 | |
| 229 | # Documents to append as an appendix to all manuals. |
Alex Gaynor | ffcf3b1 | 2014-03-26 13:10:10 -0700 | [diff] [blame] | 230 | # latex_appendices = [] |
Alex Gaynor | c62e91f | 2013-08-06 19:25:52 -0700 | [diff] [blame] | 231 | |
| 232 | # If false, no module index is generated. |
Alex Gaynor | ffcf3b1 | 2014-03-26 13:10:10 -0700 | [diff] [blame] | 233 | # latex_domain_indices = True |
Alex Gaynor | c62e91f | 2013-08-06 19:25:52 -0700 | [diff] [blame] | 234 | |
| 235 | |
Alex Gaynor | d21da67 | 2013-08-07 08:12:16 -0700 | [diff] [blame] | 236 | # -- Options for manual page output ------------------------------------------- |
Alex Gaynor | c62e91f | 2013-08-06 19:25:52 -0700 | [diff] [blame] | 237 | |
| 238 | # One entry per manual page. List of tuples |
| 239 | # (source start file, name, description, authors, manual section). |
| 240 | man_pages = [ |
Alex Gaynor | c113c3b | 2013-08-07 08:36:20 -0700 | [diff] [blame] | 241 | ('index', 'cryptography', 'Cryptography Documentation', |
| 242 | ['Individual Contributors'], 1) |
Alex Gaynor | c62e91f | 2013-08-06 19:25:52 -0700 | [diff] [blame] | 243 | ] |
| 244 | |
| 245 | # If true, show URL addresses after external links. |
Alex Gaynor | ffcf3b1 | 2014-03-26 13:10:10 -0700 | [diff] [blame] | 246 | # man_show_urls = False |
Alex Gaynor | c62e91f | 2013-08-06 19:25:52 -0700 | [diff] [blame] | 247 | |
| 248 | |
Alex Gaynor | d21da67 | 2013-08-07 08:12:16 -0700 | [diff] [blame] | 249 | # -- Options for Texinfo output ----------------------------------------------- |
Alex Gaynor | c62e91f | 2013-08-06 19:25:52 -0700 | [diff] [blame] | 250 | |
| 251 | # Grouping the document tree into Texinfo files. List of tuples |
| 252 | # (source start file, target name, title, author, |
| 253 | # dir menu entry, description, category) |
| 254 | texinfo_documents = [ |
Alex Gaynor | c113c3b | 2013-08-07 08:36:20 -0700 | [diff] [blame] | 255 | ('index', 'Cryptography', 'Cryptography Documentation', |
| 256 | 'Individual Contributors', 'Cryptography', |
Alex Gaynor | d21da67 | 2013-08-07 08:12:16 -0700 | [diff] [blame] | 257 | 'One line description of project.', |
| 258 | 'Miscellaneous'), |
Alex Gaynor | c62e91f | 2013-08-06 19:25:52 -0700 | [diff] [blame] | 259 | ] |
| 260 | |
| 261 | # Documents to append as an appendix to all manuals. |
Alex Gaynor | ffcf3b1 | 2014-03-26 13:10:10 -0700 | [diff] [blame] | 262 | # texinfo_appendices = [] |
Alex Gaynor | c62e91f | 2013-08-06 19:25:52 -0700 | [diff] [blame] | 263 | |
| 264 | # If false, no module index is generated. |
Alex Gaynor | ffcf3b1 | 2014-03-26 13:10:10 -0700 | [diff] [blame] | 265 | # texinfo_domain_indices = True |
Alex Gaynor | c62e91f | 2013-08-06 19:25:52 -0700 | [diff] [blame] | 266 | |
| 267 | # How to display URL addresses: 'footnote', 'no', or 'inline'. |
Alex Gaynor | ffcf3b1 | 2014-03-26 13:10:10 -0700 | [diff] [blame] | 268 | # texinfo_show_urls = 'footnote' |
Alex Gaynor | c62e91f | 2013-08-06 19:25:52 -0700 | [diff] [blame] | 269 | |
Alex Gaynor | c62e91f | 2013-08-06 19:25:52 -0700 | [diff] [blame] | 270 | # Example configuration for intersphinx: refer to the Python standard library. |
Alex Gaynor | e9df294 | 2014-12-12 10:56:26 -0800 | [diff] [blame] | 271 | intersphinx_mapping = {'https://docs.python.org/': None} |
David Reid | dd97bfe | 2014-01-16 19:46:22 -0800 | [diff] [blame] | 272 | |
| 273 | epub_theme = 'epub' |