|
15 | 15 | 'sphinx.ext.viewcode',
|
16 | 16 | ]
|
17 | 17 |
|
18 |
| -intersphinx_mapping = {'python': ('https://docs.python.org/3.4', None),'BusDevice': ('https://circuitpython.readthedocs.io/projects/bus_device/en/latest/', None),'Register': ('https://circuitpython.readthedocs.io/projects/register/en/latest/', None),'CircuitPython': ('https://circuitpython.readthedocs.io/en/latest/', None)} |
| 18 | +intersphinx_mapping = {'python': ('https://docs.python.org/3.4', None), |
| 19 | + 'BusDevice': ('https://circuitpython.readthedocs.io/projects/bus_device/en/latest/', None), |
| 20 | + 'Register': ('https://circuitpython.readthedocs.io/projects/register/en/latest/', None), |
| 21 | + 'CircuitPython': ('https://circuitpython.readthedocs.io/en/latest/', None)} |
| 22 | + |
| 23 | +autodoc_mock_imports = ["pulseio"] |
19 | 24 |
|
20 | 25 | # Add any paths that contain templates here, relative to this directory.
|
21 | 26 | templates_path = ['_templates']
|
|
26 | 31 | master_doc = 'README'
|
27 | 32 |
|
28 | 33 | # General information about the project.
|
29 |
| -project = u'Adafruit DHTLIB Library' |
| 34 | +project = u'Adafruit CircuitPython DHT Library' |
30 | 35 | copyright = u'2017 Mike McWethy'
|
31 | 36 | author = u'Mike McWethy'
|
32 | 37 |
|
|
91 | 96 | html_static_path = ['_static']
|
92 | 97 |
|
93 | 98 | # Output file base name for HTML help builder.
|
94 |
| -htmlhelp_basename = 'AdafruitDHTLIBLibrarydoc' |
| 99 | +htmlhelp_basename = 'AdafruitCircuitPythonDHTLibrarydoc' |
95 | 100 |
|
96 | 101 | # -- Options for LaTeX output ---------------------------------------------
|
97 | 102 |
|
|
117 | 122 | # (source start file, target name, title,
|
118 | 123 | # author, documentclass [howto, manual, or own class]).
|
119 | 124 | latex_documents = [
|
120 |
| - (master_doc, 'AdafruitDHTLIBLibrary.tex', u'Adafruit DHTLIB Library Documentation', |
| 125 | + (master_doc, 'AdafruitCircuitPythonDHTLibrary.tex', u'Adafruit CircuitPython DHT Library Documentation', |
121 | 126 | author, 'manual'),
|
122 | 127 | ]
|
123 | 128 |
|
|
126 | 131 | # One entry per manual page. List of tuples
|
127 | 132 | # (source start file, name, description, authors, manual section).
|
128 | 133 | man_pages = [
|
129 |
| - (master_doc, 'adafruitDHTLIBlibrary', u'Adafruit DHTLIB Library Documentation', |
| 134 | + (master_doc, 'adafruitCircuitPythonDHTlibrary', u'Adafruit CircuitPython DHT Library Documentation', |
130 | 135 | [author], 1)
|
131 | 136 | ]
|
132 | 137 |
|
|
136 | 141 | # (source start file, target name, title, author,
|
137 | 142 | # dir menu entry, description, category)
|
138 | 143 | texinfo_documents = [
|
139 |
| - (master_doc, 'AdafruitDHTLIBLibrary', u'Adafruit DHTLIB Library Documentation', |
140 |
| - author, 'AdafruitDHTLIBLibrary', 'One line description of project.', |
| 144 | + (master_doc, 'AdafruitCircuitPythonDHTLibrary', u'Adafruit CircuitPython DHT Library Documentation', |
| 145 | + author, 'AdafruitCircuitPythonDHTLibrary', 'One line description of project.', |
141 | 146 | 'Miscellaneous'),
|
142 | 147 | ]
|
0 commit comments