|
18 | 18 | sys.path.insert(0, os.path.abspath('..')) |
19 | 19 | import maxminddb |
20 | 20 |
|
21 | | - |
22 | 21 | __version__ = maxminddb.__version__ |
23 | 22 |
|
24 | 23 | # If extensions (or modules to document with autodoc) are in another directory, |
|
33 | 32 |
|
34 | 33 | # Add any Sphinx extension module names here, as strings. They can be extensions |
35 | 34 | # coming with Sphinx (named 'sphinx.ext.*') or your custom ones. |
36 | | -extensions = ['sphinx.ext.autodoc', 'sphinx.ext.doctest', |
37 | | - 'sphinx.ext.intersphinx', 'sphinx.ext.coverage'] |
| 35 | +extensions = [ |
| 36 | + 'sphinx.ext.autodoc', 'sphinx.ext.doctest', 'sphinx.ext.intersphinx', |
| 37 | + 'sphinx.ext.coverage' |
| 38 | +] |
38 | 39 |
|
39 | 40 | # Add any paths that contain templates here, relative to this directory. |
40 | 41 | templates_path = ['_templates'] |
|
95 | 96 | # A list of ignored prefixes for module index sorting. |
96 | 97 | #modindex_common_prefix = [] |
97 | 98 |
|
98 | | - |
99 | 99 | # -- Options for HTML output --------------------------------------------- |
100 | 100 |
|
101 | 101 | # The theme to use for HTML and HTML Help pages. See the documentation for |
|
175 | 175 | # Output file base name for HTML help builder. |
176 | 176 | htmlhelp_basename = 'maxminddbdoc' |
177 | 177 |
|
178 | | - |
179 | 178 | # -- Options for LaTeX output -------------------------------------------- |
180 | 179 |
|
181 | 180 | latex_elements = { |
|
192 | 191 | # Grouping the document tree into LaTeX files. List of tuples |
193 | 192 | # (source start file, target name, title, author, documentclass [howto/manual]). |
194 | 193 | latex_documents = [ |
195 | | - ('index', 'maxminddb.tex', 'maxminddb Documentation', |
196 | | - 'Gregory Oschwald', 'manual'), |
| 194 | + ('index', 'maxminddb.tex', 'maxminddb Documentation', 'Gregory Oschwald', |
| 195 | + 'manual'), |
197 | 196 | ] |
198 | 197 |
|
199 | 198 | # The name of an image file (relative to this directory) to place at the top of |
|
216 | 215 | # If false, no module index is generated. |
217 | 216 | #latex_domain_indices = True |
218 | 217 |
|
219 | | - |
220 | 218 | # -- Options for manual page output -------------------------------------- |
221 | 219 |
|
222 | 220 | # One entry per manual page. List of tuples |
223 | 221 | # (source start file, name, description, authors, manual section). |
224 | | -man_pages = [ |
225 | | - ('index', 'maxminddb', 'maxminddb Documentation', |
226 | | - ['Gregory Oschwald'], 1) |
227 | | -] |
| 222 | +man_pages = [('index', 'maxminddb', 'maxminddb Documentation', |
| 223 | + ['Gregory Oschwald'], 1)] |
228 | 224 |
|
229 | 225 | # If true, show URL addresses after external links. |
230 | 226 | #man_show_urls = False |
231 | 227 |
|
232 | | - |
233 | 228 | # -- Options for Texinfo output ------------------------------------------ |
234 | 229 |
|
235 | 230 | # Grouping the document tree into Texinfo files. List of tuples |
236 | 231 | # (source start file, target name, title, author, |
237 | 232 | # dir menu entry, description, category) |
238 | 233 | texinfo_documents = [ |
239 | | - ('index', 'maxminddb', 'maxminddb Documentation', |
240 | | - 'Gregory Oschwald', 'maxminddb', 'MaxMind DB Reader', |
241 | | - 'Miscellaneous'), |
| 234 | + ('index', 'maxminddb', 'maxminddb Documentation', 'Gregory Oschwald', |
| 235 | + 'maxminddb', 'MaxMind DB Reader', 'Miscellaneous'), |
242 | 236 | ] |
243 | 237 |
|
244 | 238 | # Documents to append as an appendix to all manuals. |
|
250 | 244 | # How to display URL addresses: 'footnote', 'no', or 'inline'. |
251 | 245 | #texinfo_show_urls = 'footnote' |
252 | 246 |
|
253 | | - |
254 | 247 | # Example configuration for intersphinx: refer to the Python standard library. |
255 | 248 | intersphinx_mapping = {'http://docs.python.org/': None} |
0 commit comments