|
1 | 1 | # -*- coding: utf-8 -*-
|
2 |
| -# |
3 |
| -# undebt documentation build configuration file |
4 |
| -# |
5 |
| -# This file is execfile()d with the current directory set to its containing dir. |
6 |
| -# |
7 |
| -# Note that not all possible configuration values are present in this |
8 |
| -# autogenerated file. |
9 |
| -# |
10 |
| -# All configuration values have a default; values that are commented out |
11 |
| -# serve to show the default. |
12 |
| -# If extensions (or modules to document with autodoc) are in another directory, |
13 |
| -# add these directories to sys.path here. If the directory is relative to the |
14 |
| -# documentation root, use os.path.abspath to make it absolute, like shown here. |
| 2 | +from __future__ import absolute_import |
| 3 | +from __future__ import division |
| 4 | +from __future__ import print_function |
| 5 | + |
15 | 6 | import undebt
|
16 | 7 |
|
17 |
| -# -- General configuration ----------------------------------------------------- |
18 | 8 |
|
19 | 9 | # Add any Sphinx extension module names here, as strings. They can be extensions
|
20 | 10 | # coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
|
21 | 11 | extensions = ['sphinx.ext.autodoc', 'sphinxcontrib.programoutput']
|
22 | 12 |
|
23 |
| -# Add any paths that contain templates here, relative to this directory. |
24 |
| -# templates_path = ['_templates'] |
25 |
| - |
26 | 13 | # The suffix of source filenames.
|
27 | 14 | source_suffix = '.rst'
|
28 | 15 |
|
29 |
| -# The encoding of source files. |
30 |
| -# source_encoding = 'utf-8' |
31 |
| - |
32 | 16 | # The master toctree document.
|
33 | 17 | master_doc = 'index'
|
34 | 18 |
|
|
46 | 30 | # release = 'LATEST_RELEASE'
|
47 | 31 | version = undebt.__version__
|
48 | 32 |
|
49 |
| -# The language for content autogenerated by Sphinx. Refer to documentation |
50 |
| -# for a list of supported languages. |
51 |
| -# language = None |
52 |
| - |
53 |
| -# There are two options for replacing |today|: either, you set today to some |
54 |
| -# non-false value, then it is used: |
55 |
| -# today = '' |
56 |
| -# Else, today_fmt is used as the format for a strftime call. |
57 |
| -# today_fmt = '%B %d, %Y' |
58 |
| - |
59 |
| -# List of documents that shouldn't be included in the build. |
60 |
| -# unused_docs = [] |
61 |
| - |
62 |
| -# List of directories, relative to source directory, that shouldn't be searched |
63 |
| -# for source files. |
64 |
| -exclude_trees = [] |
65 |
| - |
66 |
| -# The reST default role (used for this markup: `text`) to use for all documents. |
67 |
| -# default_role = None |
68 |
| - |
69 |
| -# If true, '()' will be appended to :func: etc. cross-reference text. |
70 |
| -# add_function_parentheses = True |
71 |
| - |
72 |
| -# If true, the current module name will be prepended to all description |
73 |
| -# unit titles (such as .. function::). |
74 |
| -# add_module_names = True |
75 |
| - |
76 |
| -# If true, sectionauthor and moduleauthor directives will be shown in the |
77 |
| -# output. They are ignored by default. |
78 |
| -# show_authors = False |
79 |
| - |
80 | 33 | # The name of the Pygments (syntax highlighting) style to use.
|
81 | 34 | pygments_style = 'sphinx'
|
82 | 35 |
|
83 |
| -# A list of ignored prefixes for module index sorting. |
84 |
| -# modindex_common_prefix = [] |
85 |
| - |
86 |
| - |
87 |
| -# -- Options for HTML output --------------------------------------------------- |
88 |
| - |
89 | 36 | # The theme to use for HTML and HTML Help pages. Major themes that come with
|
90 | 37 | # Sphinx are currently 'default' and 'sphinxdoc'.
|
91 | 38 | html_theme = 'alabaster'
|
92 | 39 |
|
93 |
| -# Theme options are theme-specific and customize the look and feel of a theme |
94 |
| -# further. For a list of options available for each theme, see the |
95 |
| -# documentation. |
96 |
| -# html_theme_options = {} |
97 |
| - |
98 |
| -# Add any paths that contain custom themes here, relative to this directory. |
99 |
| -# html_theme_path = [] |
100 |
| - |
101 |
| -# The name for this set of Sphinx documents. If None, it defaults to |
102 |
| -# "<project> v<release> documentation". |
103 |
| -# html_title = None |
104 |
| - |
105 |
| -# A shorter title for the navigation bar. Default is the same as html_title. |
106 |
| -# html_short_title = None |
107 |
| - |
108 |
| -# The name of an image file (relative to this directory) to place at the top |
109 |
| -# of the sidebar. |
110 |
| -# html_logo = None |
111 |
| - |
112 |
| -# The name of an image file (within the static path) to use as favicon of the |
113 |
| -# docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32 |
114 |
| -# pixels large. |
115 |
| -# html_favicon = None |
116 |
| - |
117 |
| -# Add any paths that contain custom static files (such as style sheets) here, |
118 |
| -# relative to this directory. They are copied after the builtin static files, |
119 |
| -# so a file named "default.css" will overwrite the builtin "default.css". |
120 |
| -# html_static_path = ['_static'] |
121 |
| - |
122 |
| -# If not '', a 'Last updated on:' timestamp is inserted at every page bottom, |
123 |
| -# using the given strftime format. |
124 |
| -# html_last_updated_fmt = '%b %d, %Y' |
125 |
| - |
126 |
| -# If true, SmartyPants will be used to convert quotes and dashes to |
127 |
| -# typographically correct entities. |
128 |
| -# html_use_smartypants = True |
129 |
| - |
130 |
| -# Custom sidebar templates, maps document names to template names. |
131 |
| -# html_sidebars = {} |
132 |
| - |
133 |
| -# Additional templates that should be rendered to pages, maps page names to |
134 |
| -# template names. |
135 |
| -# html_additional_pages = {} |
136 |
| - |
137 |
| -# If false, no module index is generated. |
138 |
| -# html_use_modindex = True |
139 |
| - |
140 |
| -# If false, no index is generated. |
141 |
| -# html_use_index = True |
142 |
| - |
143 |
| -# If true, the index is split into individual pages for each letter. |
144 |
| -# html_split_index = False |
145 |
| - |
146 |
| -# If true, links to the reST sources are added to the pages. |
147 |
| -# html_show_sourcelink = True |
148 |
| - |
149 |
| -# If true, an OpenSearch description file will be output, and all pages will |
150 |
| -# contain a <link> tag referring to it. The value of this option must be the |
151 |
| -# base URL from which the finished HTML is served. |
152 |
| -# html_use_opensearch = '' |
153 |
| - |
154 |
| -# If nonempty, this is the file name suffix for HTML files (e.g. ".xhtml"). |
155 |
| -# html_file_suffix = '' |
156 |
| - |
157 | 40 | # Output file base name for HTML help builder.
|
158 | 41 | htmlhelp_basename = 'undebtdoc'
|
159 |
| - |
160 |
| - |
161 |
| -# -- Options for LaTeX output -------------------------------------------------- |
162 |
| - |
163 |
| -# The paper size ('letter' or 'a4'). |
164 |
| -# latex_paper_size = 'letter' |
165 |
| - |
166 |
| -# The font size ('10pt', '11pt' or '12pt'). |
167 |
| -# latex_font_size = '10pt' |
168 |
| - |
169 |
| -# Grouping the document tree into LaTeX files. List of tuples |
170 |
| -# (source start file, target name, title, author, documentclass [howto/manual]). |
171 |
| -# latex_documents = [] |
172 |
| - |
173 |
| -# The name of an image file (relative to this directory) to place at the top of |
174 |
| -# the title page. |
175 |
| -# latex_logo = None |
176 |
| - |
177 |
| -# For "manual" documents, if this is true, then toplevel headings are parts, |
178 |
| -# not chapters. |
179 |
| -# latex_use_parts = False |
180 |
| - |
181 |
| -# Additional stuff for the LaTeX preamble. |
182 |
| -# latex_preamble = '' |
183 |
| - |
184 |
| -# Documents to append as an appendix to all manuals. |
185 |
| -# latex_appendices = [] |
186 |
| - |
187 |
| -# If false, no module index is generated. |
188 |
| -# latex_use_modindex = True |
0 commit comments