1
|
|
|
#!/usr/bin/env python3 |
2
|
|
|
# -*- coding: utf-8 -*- |
3
|
|
|
# |
4
|
|
|
# aiogremlin documentation build configuration file, created by |
5
|
|
|
# sphinx-quickstart on Sat Jun 27 13:50:06 2015. |
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
|
|
|
import alabaster |
17
|
|
|
import sys |
18
|
|
|
import os |
19
|
|
|
import shlex |
20
|
|
|
|
21
|
|
|
# If extensions (or modules to document with autodoc) are in another directory, |
22
|
|
|
# add these directories to sys.path here. If the directory is relative to the |
23
|
|
|
# documentation root, use os.path.abspath to make it absolute, like shown here. |
24
|
|
|
#sys.path.insert(0, os.path.abspath('.')) |
25
|
|
|
|
26
|
|
|
# -- General configuration ------------------------------------------------ |
27
|
|
|
|
28
|
|
|
# If your documentation needs a minimal Sphinx version, state it here. |
29
|
|
|
#needs_sphinx = '1.0' |
30
|
|
|
sys.path.insert(0, os.path.dirname(os.path.dirname(__file__))) |
31
|
|
|
# Add any Sphinx extension module names here, as strings. They can be |
32
|
|
|
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom |
33
|
|
|
# ones. |
34
|
|
|
extensions = [ |
35
|
|
|
'sphinx.ext.autodoc', |
36
|
|
|
'sphinx.ext.viewcode', |
37
|
|
|
'sphinx.ext.intersphinx', |
38
|
|
|
'alabaster' |
39
|
|
|
] |
40
|
|
|
|
41
|
|
|
# Add any paths that contain templates here, relative to this directory. |
42
|
|
|
templates_path = ['_templates'] |
43
|
|
|
|
44
|
|
|
# The suffix(es) of source filenames. |
45
|
|
|
# You can specify multiple suffix as a list of string: |
46
|
|
|
# source_suffix = ['.rst', '.md'] |
47
|
|
|
source_suffix = '.rst' |
48
|
|
|
|
49
|
|
|
# The encoding of source files. |
50
|
|
|
#source_encoding = 'utf-8-sig' |
51
|
|
|
|
52
|
|
|
# The master toctree document. |
53
|
|
|
master_doc = 'index' |
54
|
|
|
|
55
|
|
|
# General information about the project. |
56
|
|
|
project = 'aiogremlin' |
57
|
|
|
copyright = '2015, David M. Brown' |
58
|
|
|
author = 'David M. Brown' |
59
|
|
|
|
60
|
|
|
# The version info for the project you're documenting, acts as replacement for |
61
|
|
|
# |version| and |release|, also used in various other places throughout the |
62
|
|
|
# built documents. |
63
|
|
|
# |
64
|
|
|
# The short X.Y version. |
65
|
|
|
version = '0.1.0' |
66
|
|
|
# The full version, including alpha/beta/rc tags. |
67
|
|
|
release = '0.1.0' |
68
|
|
|
|
69
|
|
|
# The language for content autogenerated by Sphinx. Refer to documentation |
70
|
|
|
# for a list of supported languages. |
71
|
|
|
# |
72
|
|
|
# This is also used if you do content translation via gettext catalogs. |
73
|
|
|
# Usually you set "language" from the command line for these cases. |
74
|
|
|
language = None |
75
|
|
|
|
76
|
|
|
# There are two options for replacing |today|: either, you set today to some |
77
|
|
|
# non-false value, then it is used: |
78
|
|
|
#today = '' |
79
|
|
|
# Else, today_fmt is used as the format for a strftime call. |
80
|
|
|
#today_fmt = '%B %d, %Y' |
81
|
|
|
|
82
|
|
|
# List of patterns, relative to source directory, that match files and |
83
|
|
|
# directories to ignore when looking for source files. |
84
|
|
|
exclude_patterns = [] |
85
|
|
|
|
86
|
|
|
# The reST default role (used for this markup: `text`) to use for all |
87
|
|
|
# documents. |
88
|
|
|
#default_role = None |
89
|
|
|
|
90
|
|
|
# If true, '()' will be appended to :func: etc. cross-reference text. |
91
|
|
|
#add_function_parentheses = True |
92
|
|
|
|
93
|
|
|
# If true, the current module name will be prepended to all description |
94
|
|
|
# unit titles (such as .. function::). |
95
|
|
|
#add_module_names = True |
96
|
|
|
|
97
|
|
|
# If true, sectionauthor and moduleauthor directives will be shown in the |
98
|
|
|
# output. They are ignored by default. |
99
|
|
|
#show_authors = False |
100
|
|
|
|
101
|
|
|
# The name of the Pygments (syntax highlighting) style to use. |
102
|
|
|
pygments_style = 'sphinx' |
103
|
|
|
|
104
|
|
|
# A list of ignored prefixes for module index sorting. |
105
|
|
|
#modindex_common_prefix = [] |
106
|
|
|
|
107
|
|
|
# If true, keep warnings as "system message" paragraphs in the built documents. |
108
|
|
|
#keep_warnings = False |
109
|
|
|
|
110
|
|
|
# If true, `todo` and `todoList` produce output, else they produce nothing. |
111
|
|
|
todo_include_todos = False |
112
|
|
|
|
113
|
|
|
|
114
|
|
|
# -- Options for HTML output ---------------------------------------------- |
115
|
|
|
|
116
|
|
|
# The theme to use for HTML and HTML Help pages. See the documentation for |
117
|
|
|
# a list of builtin themes. |
118
|
|
|
html_theme = 'alabaster' |
119
|
|
|
|
120
|
|
|
# Theme options are theme-specific and customize the look and feel of a theme |
121
|
|
|
# further. For a list of options available for each theme, see the |
122
|
|
|
# documentation. |
123
|
|
|
html_theme_options = { |
124
|
|
|
# 'logo': 'logo.png', |
125
|
|
|
'description': 'Async Gremlin Language Variant', |
126
|
|
|
'logo_text_align': 'left', |
127
|
|
|
'github_user': 'davebshow', |
128
|
|
|
'github_repo': 'aiogremlin', |
129
|
|
|
'github_button': True, |
130
|
|
|
'github_banner': True |
131
|
|
|
} |
132
|
|
|
|
133
|
|
|
# Add any paths that contain custom themes here, relative to this directory. |
134
|
|
|
html_theme_path = [alabaster.get_path()] |
135
|
|
|
|
136
|
|
|
# The name for this set of Sphinx documents. If None, it defaults to |
137
|
|
|
# "<project> v<release> documentation". |
138
|
|
|
#html_title = None |
139
|
|
|
|
140
|
|
|
# A shorter title for the navigation bar. Default is the same as html_title. |
141
|
|
|
#html_short_title = None |
142
|
|
|
|
143
|
|
|
# The name of an image file (relative to this directory) to place at the top |
144
|
|
|
# of the sidebar. |
145
|
|
|
#html_logo = None |
146
|
|
|
|
147
|
|
|
# The name of an image file (within the static path) to use as favicon of the |
148
|
|
|
# docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32 |
149
|
|
|
# pixels large. |
150
|
|
|
#html_favicon = None |
151
|
|
|
|
152
|
|
|
# Add any paths that contain custom static files (such as style sheets) here, |
153
|
|
|
# relative to this directory. They are copied after the builtin static files, |
154
|
|
|
# so a file named "default.css" will overwrite the builtin "default.css". |
155
|
|
|
#html_static_path = ['_static'] |
156
|
|
|
|
157
|
|
|
# Add any extra paths that contain custom files (such as robots.txt or |
158
|
|
|
# .htaccess) here, relative to this directory. These files are copied |
159
|
|
|
# directly to the root of the documentation. |
160
|
|
|
#html_extra_path = [] |
161
|
|
|
|
162
|
|
|
# If not '', a 'Last updated on:' timestamp is inserted at every page bottom, |
163
|
|
|
# using the given strftime format. |
164
|
|
|
#html_last_updated_fmt = '%b %d, %Y' |
165
|
|
|
|
166
|
|
|
# If true, SmartyPants will be used to convert quotes and dashes to |
167
|
|
|
# typographically correct entities. |
168
|
|
|
#html_use_smartypants = True |
169
|
|
|
|
170
|
|
|
# Custom sidebar templates, maps document names to template names. |
171
|
|
|
html_sidebars = { |
172
|
|
|
'**': [ |
173
|
|
|
'about.html', 'navigation.html', 'searchbox.html', 'donate.html', |
174
|
|
|
] |
175
|
|
|
} |
176
|
|
|
|
177
|
|
|
# Additional templates that should be rendered to pages, maps page names to |
178
|
|
|
# template names. |
179
|
|
|
#html_additional_pages = {} |
180
|
|
|
|
181
|
|
|
# If false, no module index is generated. |
182
|
|
|
#html_domain_indices = True |
183
|
|
|
|
184
|
|
|
# If false, no index is generated. |
185
|
|
|
#html_use_index = True |
186
|
|
|
|
187
|
|
|
# If true, the index is split into individual pages for each letter. |
188
|
|
|
#html_split_index = False |
189
|
|
|
|
190
|
|
|
# If true, links to the reST sources are added to the pages. |
191
|
|
|
#html_show_sourcelink = True |
192
|
|
|
|
193
|
|
|
# If true, "Created using Sphinx" is shown in the HTML footer. Default is True. |
194
|
|
|
#html_show_sphinx = True |
195
|
|
|
|
196
|
|
|
# If true, "(C) Copyright ..." is shown in the HTML footer. Default is True. |
197
|
|
|
#html_show_copyright = True |
198
|
|
|
|
199
|
|
|
# If true, an OpenSearch description file will be output, and all pages will |
200
|
|
|
# contain a <link> tag referring to it. The value of this option must be the |
201
|
|
|
# base URL from which the finished HTML is served. |
202
|
|
|
#html_use_opensearch = '' |
203
|
|
|
|
204
|
|
|
# This is the file name suffix for HTML files (e.g. ".xhtml"). |
205
|
|
|
#html_file_suffix = None |
206
|
|
|
|
207
|
|
|
# Language to be used for generating the HTML full-text search index. |
208
|
|
|
# Sphinx supports the following languages: |
209
|
|
|
# 'da', 'de', 'en', 'es', 'fi', 'fr', 'h', 'it', 'ja' |
210
|
|
|
# 'nl', 'no', 'pt', 'ro', 'r', 'sv', 'tr' |
211
|
|
|
#html_search_language = 'en' |
212
|
|
|
|
213
|
|
|
# A dictionary with options for the search language support, empty by default. |
214
|
|
|
# Now only 'ja' uses this config value |
215
|
|
|
#html_search_options = {'type': 'default'} |
216
|
|
|
|
217
|
|
|
# The name of a javascript file (relative to the configuration directory) that |
218
|
|
|
# implements a search results scorer. If empty, the default will be used. |
219
|
|
|
#html_search_scorer = 'scorer.js' |
220
|
|
|
|
221
|
|
|
# Output file base name for HTML help builder. |
222
|
|
|
htmlhelp_basename = 'aiogremlindoc' |
223
|
|
|
|
224
|
|
|
# -- Options for LaTeX output --------------------------------------------- |
225
|
|
|
|
226
|
|
|
latex_elements = { |
227
|
|
|
# The paper size ('letterpaper' or 'a4paper'). |
228
|
|
|
#'papersize': 'letterpaper', |
229
|
|
|
|
230
|
|
|
# The font size ('10pt', '11pt' or '12pt'). |
231
|
|
|
#'pointsize': '10pt', |
232
|
|
|
|
233
|
|
|
# Additional stuff for the LaTeX preamble. |
234
|
|
|
#'preamble': '', |
235
|
|
|
|
236
|
|
|
# Latex figure (float) alignment |
237
|
|
|
#'figure_align': 'htbp', |
238
|
|
|
} |
239
|
|
|
|
240
|
|
|
# Grouping the document tree into LaTeX files. List of tuples |
241
|
|
|
# (source start file, target name, title, |
242
|
|
|
# author, documentclass [howto, manual, or own class]). |
243
|
|
|
latex_documents = [ |
244
|
|
|
(master_doc, 'aiogremlin.tex', 'aiogremlin Documentation', |
245
|
|
|
'David M. Brown', 'manual'), |
246
|
|
|
] |
247
|
|
|
|
248
|
|
|
# The name of an image file (relative to this directory) to place at the top of |
249
|
|
|
# the title page. |
250
|
|
|
#latex_logo = None |
251
|
|
|
|
252
|
|
|
# For "manual" documents, if this is true, then toplevel headings are parts, |
253
|
|
|
# not chapters. |
254
|
|
|
#latex_use_parts = False |
255
|
|
|
|
256
|
|
|
# If true, show page references after internal links. |
257
|
|
|
#latex_show_pagerefs = False |
258
|
|
|
|
259
|
|
|
# If true, show URL addresses after external links. |
260
|
|
|
#latex_show_urls = False |
261
|
|
|
|
262
|
|
|
# Documents to append as an appendix to all manuals. |
263
|
|
|
#latex_appendices = [] |
264
|
|
|
|
265
|
|
|
# If false, no module index is generated. |
266
|
|
|
#latex_domain_indices = True |
267
|
|
|
|
268
|
|
|
|
269
|
|
|
# -- Options for manual page output --------------------------------------- |
270
|
|
|
|
271
|
|
|
# One entry per manual page. List of tuples |
272
|
|
|
# (source start file, name, description, authors, manual section). |
273
|
|
|
man_pages = [ |
274
|
|
|
(master_doc, 'aiogremlin', 'aiogremlin Documentation', |
275
|
|
|
[author], 1) |
276
|
|
|
] |
277
|
|
|
|
278
|
|
|
# If true, show URL addresses after external links. |
279
|
|
|
#man_show_urls = False |
280
|
|
|
|
281
|
|
|
|
282
|
|
|
# -- Options for Texinfo output ------------------------------------------- |
283
|
|
|
|
284
|
|
|
# Grouping the document tree into Texinfo files. List of tuples |
285
|
|
|
# (source start file, target name, title, author, |
286
|
|
|
# dir menu entry, description, category) |
287
|
|
|
texinfo_documents = [ |
288
|
|
|
(master_doc, 'aiogremlin', 'aiogremlin Documentation', |
289
|
|
|
author, 'aiogremlin', 'One line description of project.', |
290
|
|
|
'Miscellaneous'), |
291
|
|
|
] |
292
|
|
|
|
293
|
|
|
# Documents to append as an appendix to all manuals. |
294
|
|
|
#texinfo_appendices = [] |
295
|
|
|
|
296
|
|
|
# If false, no module index is generated. |
297
|
|
|
#texinfo_domain_indices = True |
298
|
|
|
|
299
|
|
|
# How to display URL addresses: 'footnote', 'no', or 'inline'. |
300
|
|
|
#texinfo_show_urls = 'footnote' |
301
|
|
|
|
302
|
|
|
# If true, do not generate a @detailmenu in the "Top" node's menu. |
303
|
|
|
#texinfo_no_detailmenu = False |
304
|
|
|
intersphinx_mapping = { |
305
|
|
|
'python': ('https://docs.python.org/3.4', None), |
306
|
|
|
'aiohttp': ('http://aiohttp.readthedocs.org/en/stable/', None)} |
307
|
|
|
|