Skip to content

Commit c74a35b

Browse files
committed
forgot to update conf.py...until now
1 parent 225e41b commit c74a35b

File tree

1 file changed

+12
-3
lines changed

1 file changed

+12
-3
lines changed

docs/conf.py

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import os
44
import sys
5-
sys.path.insert(0, os.path.abspath('.'))
5+
sys.path.insert(0, os.path.abspath('..'))
66

77
# -- General configuration ------------------------------------------------
88

@@ -26,7 +26,7 @@
2626
source_suffix = '.rst'
2727

2828
# The master toctree document.
29-
master_doc = 'README'
29+
master_doc = 'index'
3030

3131
# General information about the project.
3232
project = u'Adafruit BME280 Library'
@@ -52,7 +52,7 @@
5252
# List of patterns, relative to source directory, that match files and
5353
# directories to ignore when looking for source files.
5454
# 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']
5656

5757
# The reST default role (used for this markup: `text`) to use for all
5858
# documents.
@@ -69,6 +69,9 @@
6969
# If true, `todo` and `todoList` produce output, else they produce nothing.
7070
todo_include_todos = False
7171

72+
# If this is True, todo emits a warning for each TODO entries. The default is False.
73+
todo_emit_warnings = True
74+
7275

7376
# -- Options for HTML output ----------------------------------------------
7477

@@ -93,6 +96,12 @@
9396
# so a file named "default.css" will overwrite the builtin "default.css".
9497
html_static_path = ['_static']
9598

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+
96105
# Output file base name for HTML help builder.
97106
htmlhelp_basename = 'AdafruitBME280Librarydoc'
98107

0 commit comments

Comments
 (0)