|
33 | 33 | # Add any Sphinx extension module names here, as strings. They can be extensions
|
34 | 34 | # coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
|
35 | 35 | extensions = [
|
36 |
| - "sphinx.ext.autodoc", |
37 |
| - "sphinx.ext.viewcode", |
38 |
| - "sphinx.ext.autosummary", |
39 |
| - "sphinx.ext.doctest", |
40 |
| - "sphinx.ext.intersphinx", |
41 |
| - "sphinx.ext.extlinks", |
42 |
| - "numpydoc", |
43 |
| - "IPython.sphinxext.ipython_console_highlighting", |
44 |
| - "IPython.sphinxext.ipython_directive", |
45 |
| - "nbsphinx", |
| 36 | + 'sphinx.ext.autodoc', |
| 37 | + 'sphinx.ext.viewcode', |
| 38 | + 'sphinx.ext.autosummary', |
| 39 | + 'sphinx.ext.doctest', |
| 40 | + 'sphinx.ext.intersphinx', |
| 41 | + 'sphinx.ext.extlinks', |
| 42 | + 'numpydoc', |
| 43 | + 'IPython.sphinxext.ipython_console_highlighting', |
| 44 | + 'IPython.sphinxext.ipython_directive', |
| 45 | + 'nbsphinx', |
46 | 46 | ]
|
47 | 47 |
|
| 48 | +extlinks = { |
| 49 | + 'issue': ('https://github.com/NCAR/intake-esm/issues/%s', 'GH#'), |
| 50 | + 'pr': ('https://github.com/NCAR/intake-esm/pull/%s', 'GH#'), |
| 51 | +} |
48 | 52 | # Add any paths that contain templates here, relative to this directory.
|
49 |
| -templates_path = ["_templates"] |
| 53 | +templates_path = ['_templates'] |
50 | 54 |
|
51 | 55 | # The suffix of source filenames.
|
52 |
| -source_suffix = ".rst" |
| 56 | +source_suffix = '.rst' |
53 | 57 |
|
54 | 58 | # The encoding of source files.
|
55 | 59 | # source_encoding = 'utf-8-sig'
|
56 | 60 |
|
57 | 61 | # The master toctree document.
|
58 |
| -master_doc = "index" |
| 62 | +master_doc = 'index' |
59 | 63 |
|
60 | 64 | # General information about the project.
|
61 |
| -project = u"intake-esm" |
62 |
| -copyright = u"2019 onwards, NCAR" |
63 |
| -authors = ["Anderson Banihirwe", "Matthew Long"] |
| 65 | +project = u'intake-esm' |
| 66 | +copyright = u'2019 onwards, NCAR' |
| 67 | +author = u'Earth System Informatics Team' |
64 | 68 |
|
65 | 69 | # The version info for the project you're documenting, acts as replacement for
|
66 | 70 | # |version| and |release|, also used in various other places throughout the
|
|
83 | 87 |
|
84 | 88 | # List of patterns, relative to source directory, that match files and
|
85 | 89 | # directories to ignore when looking for source files.
|
86 |
| -exclude_patterns = ["_build"] |
| 90 | +exclude_patterns = ['_build'] |
87 | 91 |
|
88 | 92 | # The reST default role (used for this markup: `text`) to use for all documents.
|
89 | 93 | # default_role = None
|
|
100 | 104 | # show_authors = False
|
101 | 105 |
|
102 | 106 | # The name of the Pygments (syntax highlighting) style to use.
|
103 |
| -pygments_style = "sphinx" |
| 107 | +pygments_style = 'sphinx' |
104 | 108 |
|
105 | 109 | # A list of ignored prefixes for module index sorting.
|
106 | 110 | # modindex_common_prefix = []
|
|
113 | 117 |
|
114 | 118 | # The theme to use for HTML and HTML Help pages. See the documentation for
|
115 | 119 | # a list of builtin themes.
|
116 |
| -html_theme = "sphinx_rtd_theme" |
| 120 | +html_theme = 'sphinx_rtd_theme' |
117 | 121 |
|
118 | 122 | # Theme options are theme-specific and customize the look and feel of a theme
|
119 | 123 | # further. For a list of options available for each theme, see the
|
|
142 | 146 | # Add any paths that contain custom static files (such as style sheets) here,
|
143 | 147 | # relative to this directory. They are copied after the builtin static files,
|
144 | 148 | # so a file named "default.css" will overwrite the builtin "default.css".
|
145 |
| -html_static_path = ["_static"] |
| 149 | +html_static_path = ['_static'] |
146 | 150 |
|
147 | 151 | # If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
|
148 | 152 | # using the given strftime format.
|
|
186 | 190 | # html_file_suffix = None
|
187 | 191 |
|
188 | 192 | # Output file base name for HTML help builder.
|
189 |
| -htmlhelp_basename = "intake_esmdoc" |
| 193 | +htmlhelp_basename = 'intake_esmdoc' |
190 | 194 |
|
191 | 195 |
|
192 | 196 | # -- Options for LaTeX output --------------------------------------------------
|
|
202 | 206 |
|
203 | 207 | # Grouping the document tree into LaTeX files. List of tuples
|
204 | 208 | # (source start file, target name, title, author, documentclass [howto/manual]).
|
205 |
| -latex_documents = [("index", "intake-esm.tex", u"intake-esm Documentation", authors, "manual")] |
| 209 | +latex_documents = [('index', 'intake-esm.tex', u'intake-esm Documentation', author, 'manual')] |
206 | 210 |
|
207 | 211 | # The name of an image file (relative to this directory) to place at the top of
|
208 | 212 | # the title page.
|
|
229 | 233 |
|
230 | 234 | # One entry per manual page. List of tuples
|
231 | 235 | # (source start file, name, description, authors, manual section).
|
232 |
| -man_pages = [("index", "intake-esm", u"intake-esm Documentation", authors, 1)] |
| 236 | +man_pages = [('index', 'intake-esm', u'intake-esm Documentation', [author], 1)] |
233 | 237 |
|
234 | 238 | # If true, show URL addresses after external links.
|
235 | 239 | # man_show_urls = False
|
|
242 | 246 | # dir menu entry, description, category)
|
243 | 247 | texinfo_documents = [
|
244 | 248 | (
|
245 |
| - "index", |
246 |
| - "intake-esm", |
247 |
| - u"intake-esm Documentation", |
248 |
| - authors, |
249 |
| - "intake-esm", |
250 |
| - "One line description of project.", |
251 |
| - "Miscellaneous", |
| 249 | + 'index', |
| 250 | + 'intake-esm', |
| 251 | + u'intake-esm Documentation', |
| 252 | + author, |
| 253 | + 'intake-esm', |
| 254 | + 'One line description of project.', |
| 255 | + 'Miscellaneous', |
252 | 256 | )
|
253 | 257 | ]
|
254 | 258 |
|
|
0 commit comments