|
2 | 2 |
|
3 | 3 | import os
|
4 | 4 | import sys
|
5 |
| -sys.path.insert(0, os.path.abspath('.')) |
| 5 | +sys.path.insert(0, os.path.abspath('..')) |
6 | 6 |
|
7 | 7 | # -- General configuration ------------------------------------------------
|
8 | 8 |
|
|
26 | 26 | source_suffix = '.rst'
|
27 | 27 |
|
28 | 28 | # The master toctree document.
|
29 |
| -master_doc = 'README' |
| 29 | +master_doc = 'index' |
30 | 30 |
|
31 | 31 | # General information about the project.
|
32 | 32 | project = u'Adafruit CircuitPython DotStar Library'
|
|
52 | 52 | # List of patterns, relative to source directory, that match files and
|
53 | 53 | # directories to ignore when looking for source files.
|
54 | 54 | # This patterns also effect to html_static_path and html_extra_path
|
55 |
| -exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store'] |
| 55 | +exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store', '.env', 'CODE_OF_CONDUCT.md'] |
56 | 56 |
|
57 | 57 | # The reST default role (used for this markup: `text`) to use for all
|
58 | 58 | # documents.
|
|
69 | 69 | # If true, `todo` and `todoList` produce output, else they produce nothing.
|
70 | 70 | todo_include_todos = False
|
71 | 71 |
|
| 72 | +# If this is True, todo emits a warning for each TODO entries. The default is False. |
| 73 | +todo_emit_warnings = True |
| 74 | + |
72 | 75 |
|
73 | 76 | # -- Options for HTML output ----------------------------------------------
|
74 | 77 |
|
|
93 | 96 | # so a file named "default.css" will overwrite the builtin "default.css".
|
94 | 97 | html_static_path = ['_static']
|
95 | 98 |
|
| 99 | +# The name of an image file (relative to this directory) to use as a favicon of |
| 100 | +# the docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32 |
| 101 | +# pixels large. |
| 102 | +# |
| 103 | +html_favicon = '_static/favicon.ico' |
| 104 | + |
96 | 105 | # Output file base name for HTML help builder.
|
97 | 106 | htmlhelp_basename = 'AdafruitDotStarLibrarydoc'
|
98 | 107 |
|
|
0 commit comments