|
1 |
| -# -*- coding: utf-8 -*- |
2 |
| - |
3 | 1 | # SPDX-FileCopyrightText: 2023 Jose D. Montoya
|
4 | 2 | #
|
5 | 3 | # SPDX-License-Identifier: MIT
|
|
32 | 30 | extensions = [
|
33 | 31 | "sphinx.ext.autodoc",
|
34 | 32 | "sphinx.ext.intersphinx",
|
35 |
| - "sphinx.ext.napoleon", |
36 | 33 | "sphinx.ext.viewcode",
|
37 | 34 | "sphinx_immaterial",
|
38 | 35 | ]
|
|
203 | 200 | # These paths are either relative to html_static_path
|
204 | 201 | # or fully qualified paths (eg. https://...)
|
205 | 202 | html_css_files = ["extra_css.css"]
|
206 |
| - |
207 |
| - |
208 |
| -# -- Options for LaTeX output --------------------------------------------- |
209 |
| - |
210 |
| -latex_elements = { |
211 |
| - # The paper size ('letterpaper' or 'a4paper'). |
212 |
| - # 'papersize': 'letterpaper', |
213 |
| - # The font size ('10pt', '11pt' or '12pt'). |
214 |
| - # 'pointsize': '10pt', |
215 |
| - # Additional stuff for the LaTeX preamble. |
216 |
| - # 'preamble': '', |
217 |
| - # Latex figure (float) alignment |
218 |
| - # 'figure_align': 'htbp', |
219 |
| -} |
220 |
| - |
221 |
| -# Grouping the document tree into LaTeX files. List of tuples |
222 |
| -# (source start file, target name, title, |
223 |
| -# author, documentclass [howto, manual, or own class]). |
224 |
| -latex_documents = [ |
225 |
| - ( |
226 |
| - master_doc, |
227 |
| - "MicroPython_shtc3_Library.tex", |
228 |
| - "MicroPython shtc3 Library Documentation", |
229 |
| - author, |
230 |
| - "manual", |
231 |
| - ), |
232 |
| -] |
233 |
| - |
234 |
| -# -- Options for manual page output --------------------------------------- |
235 |
| - |
236 |
| -# One entry per manual page. List of tuples |
237 |
| -# (source start file, name, description, authors, manual section). |
238 |
| -man_pages = [ |
239 |
| - ( |
240 |
| - master_doc, |
241 |
| - "MicroPython_shtc3_Library", |
242 |
| - "MicroPython shtc3 Library Documentation", |
243 |
| - [author], |
244 |
| - 1, |
245 |
| - ), |
246 |
| -] |
247 |
| - |
248 |
| -# -- Options for Texinfo output ------------------------------------------- |
249 |
| - |
250 |
| -# Grouping the document tree into Texinfo files. List of tuples |
251 |
| -# (source start file, target name, title, author, |
252 |
| -# dir menu entry, description, category) |
253 |
| -texinfo_documents = [ |
254 |
| - ( |
255 |
| - master_doc, |
256 |
| - "MicroPython_shtc3_Library", |
257 |
| - "MicroPython shtc3 Library Documentation", |
258 |
| - author, |
259 |
| - "MicroPython_shtc3_Library", |
260 |
| - "One line description of project.", |
261 |
| - "Miscellaneous", |
262 |
| - ), |
263 |
| -] |
0 commit comments