|
6 | 6 | # full list see the documentation: |
7 | 7 | # http://www.sphinx-doc.org/en/stable/config |
8 | 8 | import datetime |
| 9 | + |
9 | 10 | # -- Path setup -------------------------------------------------------------- |
10 | 11 |
|
11 | 12 | # If extensions (or modules to document with autodoc) are in another directory, |
|
15 | 16 | import os |
16 | 17 | import sys |
17 | 18 | import json |
| 19 | + |
18 | 20 | sys.path.insert(0, os.path.abspath('..')) |
19 | 21 | sys.path.insert(0, os.path.abspath('../flask-monitoringdashboard')) |
20 | 22 |
|
|
88 | 90 | # further. For a list of options available for each theme, see the |
89 | 91 | # documentation. |
90 | 92 | # |
91 | | -html_theme_options = { |
92 | | - 'github_fork': 'flask-dashboard/Flask-MonitoringDashboard' |
93 | | -} |
| 93 | +html_theme_options = {'github_fork': 'flask-dashboard/Flask-MonitoringDashboard'} |
94 | 94 |
|
95 | 95 | html_sidebars = {'**': ['globaltoc.html', 'searchbox.html', 'sourcelink.html']} |
96 | 96 |
|
|
122 | 122 | # The paper size ('letterpaper' or 'a4paper'). |
123 | 123 | # |
124 | 124 | 'papersize': 'letterpaper', |
125 | | - |
126 | 125 | # The font size ('10pt', '11pt' or '12pt'). |
127 | 126 | # |
128 | 127 | 'pointsize': '11pt', |
129 | | - |
130 | 128 | # Additional stuff for the LaTeX preamble. |
131 | 129 | # |
132 | 130 | 'preamble': '', |
133 | | - |
134 | 131 | # Latex figure (float) alignment |
135 | 132 | # |
136 | 133 | 'figure_align': 'htbp', |
|
140 | 137 | # (source start file, target name, title, |
141 | 138 | # author, documentclass [howto, manual, or own class]). |
142 | 139 | latex_documents = [ |
143 | | - (master_doc, 'Flask-MonitoringDashboard.tex', 'Flask-MonitoringDashboard Documentation', |
144 | | - author, 'manual'), |
| 140 | + ( |
| 141 | + master_doc, |
| 142 | + 'Flask-MonitoringDashboard.tex', |
| 143 | + 'Flask-MonitoringDashboard Documentation', |
| 144 | + author, |
| 145 | + 'manual', |
| 146 | + ) |
145 | 147 | ] |
146 | 148 |
|
147 | 149 |
|
|
150 | 152 | # One entry per manual page. List of tuples |
151 | 153 | # (source start file, name, description, authors, manual section). |
152 | 154 | man_pages = [ |
153 | | - (master_doc, 'flask-monitoringdashboard', 'Flask-MonitoringDashboard Documentation', |
154 | | - [author], 1) |
| 155 | + ( |
| 156 | + master_doc, |
| 157 | + 'flask-monitoringdashboard', |
| 158 | + 'Flask-MonitoringDashboard Documentation', |
| 159 | + [author], |
| 160 | + 1, |
| 161 | + ) |
155 | 162 | ] |
156 | 163 |
|
157 | 164 |
|
|
161 | 168 | # (source start file, target name, title, author, |
162 | 169 | # dir menu entry, description, category) |
163 | 170 | texinfo_documents = [ |
164 | | - (master_doc, 'Flask-MonitoringDashboard', 'Flask-MonitoringDashboard Documentation', |
165 | | - author, 'Flask-MonitoringDashboard', 'One line description of project.', |
166 | | - 'Miscellaneous'), |
| 171 | + ( |
| 172 | + master_doc, |
| 173 | + 'Flask-MonitoringDashboard', |
| 174 | + 'Flask-MonitoringDashboard Documentation', |
| 175 | + author, |
| 176 | + 'Flask-MonitoringDashboard', |
| 177 | + 'One line description of project.', |
| 178 | + 'Miscellaneous', |
| 179 | + ) |
167 | 180 | ] |
168 | 181 |
|
169 | 182 |
|
|
0 commit comments