|
| 1 | +#!/usr/bin/env python3 |
| 2 | +# -*- coding: utf-8 -*- |
| 3 | +# |
| 4 | +# pgeocode documentation build configuration file, created by |
| 5 | +# sphinx-quickstart on Sun Feb 4 15:22:38 2018. |
| 6 | +# |
| 7 | +# This file is execfile()d with the current directory set to its |
| 8 | +# containing dir. |
| 9 | +# |
| 10 | +# Note that not all possible configuration values are present in this |
| 11 | +# autogenerated file. |
| 12 | +# |
| 13 | +# All configuration values have a default; values that are commented out |
| 14 | +# serve to show the default. |
| 15 | + |
| 16 | +# If extensions (or modules to document with autodoc) are in another directory, |
| 17 | +# add these directories to sys.path here. If the directory is relative to the |
| 18 | +# documentation root, use os.path.abspath to make it absolute, like shown here. |
| 19 | +# |
| 20 | +import os |
| 21 | +import sys |
| 22 | + |
| 23 | +sys.path.insert(0, os.path.abspath('../')) |
| 24 | +sys.path.insert(0, os.path.abspath('sphinxext')) |
| 25 | + |
| 26 | +import pgeocode |
| 27 | + |
| 28 | +from github_link import make_linkcode_resolve |
| 29 | + |
| 30 | +# -- General configuration ------------------------------------------------ |
| 31 | + |
| 32 | +# If your documentation needs a minimal Sphinx version, state it here. |
| 33 | +# |
| 34 | +# needs_sphinx = '1.0' |
| 35 | + |
| 36 | +# Add any Sphinx extension module names here, as strings. They can be |
| 37 | +# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom |
| 38 | +# ones. |
| 39 | +extensions = [ |
| 40 | + 'sphinx.ext.autodoc', |
| 41 | + 'sphinx.ext.doctest', |
| 42 | + 'sphinx.ext.mathjax', |
| 43 | + 'sphinx.ext.autodoc', |
| 44 | + 'sphinx.ext.autosummary', |
| 45 | + 'sphinxcontrib.napoleon', |
| 46 | + 'sphinx.ext.linkcode' |
| 47 | +] |
| 48 | + |
| 49 | + |
| 50 | +autosummary_generate = True |
| 51 | + |
| 52 | +autodoc_default_flags = ['members', 'inherited-members'] |
| 53 | + |
| 54 | +# Add any paths that contain templates here, relative to this directory. |
| 55 | +templates_path = ['_templates'] |
| 56 | + |
| 57 | +# The suffix(es) of source filenames. |
| 58 | +# You can specify multiple suffix as a list of string: |
| 59 | +# |
| 60 | +# source_suffix = ['.rst', '.md'] |
| 61 | +source_suffix = '.rst' |
| 62 | + |
| 63 | +# The master toctree document. |
| 64 | +master_doc = 'index' |
| 65 | + |
| 66 | +# General information about the project. |
| 67 | +project = 'pgeocode' |
| 68 | +copyright = '2018, Symerio' |
| 69 | +author = 'Roman Yurchak' |
| 70 | + |
| 71 | +# The version info for the project you're documenting, acts as replacement for |
| 72 | +# |version| and |release|, also used in various other places throughout the |
| 73 | +# built documents. |
| 74 | +# |
| 75 | +# The short X.Y version. |
| 76 | +version = pgeocode.__version__ |
| 77 | +# The full version, including alpha/beta/rc tags. |
| 78 | +release = pgeocode.__version__ |
| 79 | + |
| 80 | +# The language for content autogenerated by Sphinx. Refer to documentation |
| 81 | +# for a list of supported languages. |
| 82 | +# |
| 83 | +# This is also used if you do content translation via gettext catalogs. |
| 84 | +# Usually you set "language" from the command line for these cases. |
| 85 | +language = None |
| 86 | + |
| 87 | +# List of patterns, relative to source directory, that match files and |
| 88 | +# directories to ignore when looking for source files. |
| 89 | +# This patterns also effect to html_static_path and html_extra_path |
| 90 | +exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store'] |
| 91 | + |
| 92 | +# The name of the Pygments (syntax highlighting) style to use. |
| 93 | +pygments_style = 'sphinx' |
| 94 | + |
| 95 | +# If true, `todo` and `todoList` produce output, else they produce nothing. |
| 96 | +todo_include_todos = False |
| 97 | + |
| 98 | + |
| 99 | +# -- Options for HTML output ---------------------------------------------- |
| 100 | + |
| 101 | +# The theme to use for HTML and HTML Help pages. See the documentation for |
| 102 | +# a list of builtin themes. |
| 103 | +html_theme = 'sphinx_rtd_theme' |
| 104 | + |
| 105 | +# Theme options are theme-specific and customize the look and feel of a theme |
| 106 | +# further. For a list of options available for each theme, see the |
| 107 | +# documentation. |
| 108 | +# |
| 109 | +# html_theme_options = {} |
| 110 | + |
| 111 | +# Add any paths that contain custom static files (such as style sheets) here, |
| 112 | +# relative to this directory. They are copied after the builtin static files, |
| 113 | +# so a file named "default.css" will overwrite the builtin "default.css". |
| 114 | +html_static_path = ['_static'] |
| 115 | + |
| 116 | +# Custom sidebar templates, must be a dictionary that maps document names |
| 117 | +# to template names. |
| 118 | +# |
| 119 | + |
| 120 | + |
| 121 | +# -- Options for HTMLHelp output ------------------------------------------ |
| 122 | + |
| 123 | +# Output file base name for HTML help builder. |
| 124 | +htmlhelp_basename = 'pgeocodedoc' |
| 125 | + |
| 126 | + |
| 127 | +# -- Options for LaTeX output --------------------------------------------- |
| 128 | + |
| 129 | +latex_elements = { |
| 130 | + # The paper size ('letterpaper' or 'a4paper'). |
| 131 | + # |
| 132 | + # 'papersize': 'letterpaper', |
| 133 | + |
| 134 | + # The font size ('10pt', '11pt' or '12pt'). |
| 135 | + # |
| 136 | + # 'pointsize': '10pt', |
| 137 | + |
| 138 | + # Additional stuff for the LaTeX preamble. |
| 139 | + # |
| 140 | + # 'preamble': '', |
| 141 | + |
| 142 | + # Latex figure (float) alignment |
| 143 | + # |
| 144 | + # 'figure_align': 'htbp', |
| 145 | +} |
| 146 | + |
| 147 | +# Grouping the document tree into LaTeX files. List of tuples |
| 148 | +# (source start file, target name, title, |
| 149 | +# author, documentclass [howto, manual, or own class]). |
| 150 | +latex_documents = [ |
| 151 | + (master_doc, 'pgeocode.tex', 'pgeocode Documentation', |
| 152 | + 'Roman Yurchak', 'manual'), |
| 153 | +] |
| 154 | + |
| 155 | + |
| 156 | +# -- Options for manual page output --------------------------------------- |
| 157 | + |
| 158 | +# One entry per manual page. List of tuples |
| 159 | +# (source start file, name, description, authors, manual section). |
| 160 | +man_pages = [ |
| 161 | + (master_doc, 'pgeocode', 'pgeocode Documentation', |
| 162 | + [author], 1) |
| 163 | +] |
| 164 | + |
| 165 | + |
| 166 | +# -- Options for Texinfo output ------------------------------------------- |
| 167 | + |
| 168 | +# Grouping the document tree into Texinfo files. List of tuples |
| 169 | +# (source start file, target name, title, author, |
| 170 | +# dir menu entry, description, category) |
| 171 | +texinfo_documents = [ |
| 172 | + (master_doc, 'pgeocode', 'pgeocode Documentation', |
| 173 | + author, 'pgeocode', 'One line description of project.', |
| 174 | + 'Miscellaneous'), |
| 175 | +] |
| 176 | + |
| 177 | +# The following is used by sphinx.ext.linkcode to provide links to github |
| 178 | +linkcode_resolve = make_linkcode_resolve('pgeocode', |
| 179 | + u'https://github.com/symerio/' |
| 180 | + 'pgeocode/blob/{revision}/' |
| 181 | + '{package}/{path}#L{lineno}') |
| 182 | + |
0 commit comments