|
20 | 20 | # -- Project information ----------------------------------------------------- |
21 | 21 |
|
22 | 22 | project = 'fluent.runtime' |
23 | | -copyright = '2019, Luke Plant' |
24 | | -author = 'Luke Plant' |
| 23 | +copyright = '2020' |
25 | 24 |
|
26 | 25 | # The short X.Y version |
27 | 26 | version = '0.3' |
|
41 | 40 | extensions = [ |
42 | 41 | 'sphinx.ext.intersphinx', |
43 | 42 | 'sphinx.ext.viewcode', |
| 43 | + 'sphinx.ext.autodoc', |
44 | 44 | ] |
45 | 45 |
|
46 | 46 | # Add any paths that contain templates here, relative to this directory. |
|
128 | 128 |
|
129 | 129 | # Grouping the document tree into LaTeX files. List of tuples |
130 | 130 | # (source start file, target name, title, |
131 | | -# author, documentclass [howto, manual, or own class]). |
132 | | -latex_documents = [ |
133 | | - (master_doc, 'fluentruntime.tex', 'fluent.runtime Documentation', |
134 | | - 'Luke Plant', 'manual'), |
135 | | -] |
136 | | - |
137 | | - |
138 | | -# -- Options for manual page output ------------------------------------------ |
139 | | - |
140 | | -# One entry per manual page. List of tuples |
141 | | -# (source start file, name, description, authors, manual section). |
142 | | -man_pages = [ |
143 | | - (master_doc, 'fluentruntime', 'fluent.runtime Documentation', |
144 | | - [author], 1) |
145 | | -] |
146 | | - |
147 | | - |
148 | | -# -- Options for Texinfo output ---------------------------------------------- |
149 | | - |
150 | | -# Grouping the document tree into Texinfo files. List of tuples |
151 | | -# (source start file, target name, title, author, |
152 | | -# dir menu entry, description, category) |
153 | | -texinfo_documents = [ |
154 | | - (master_doc, 'fluentruntime', 'fluent.runtime Documentation', |
155 | | - author, 'fluentruntime', 'One line description of project.', |
156 | | - 'Miscellaneous'), |
157 | | -] |
158 | | - |
159 | | - |
160 | | -# -- Options for Epub output ------------------------------------------------- |
161 | | - |
162 | | -# Bibliographic Dublin Core info. |
163 | | -epub_title = project |
164 | | - |
165 | | -# The unique identifier of the text. This can be a ISBN number |
166 | | -# or the project homepage. |
167 | | -# |
168 | | -# epub_identifier = '' |
169 | | - |
170 | | -# A unique identification for the text. |
171 | | -# |
172 | | -# epub_uid = '' |
173 | | - |
174 | | -# A list of files that should not be packed into the epub file. |
175 | | -epub_exclude_files = ['search.html'] |
176 | | - |
177 | 131 |
|
178 | 132 | # -- Extension configuration ------------------------------------------------- |
179 | 133 |
|
180 | 134 | # -- Options for intersphinx extension --------------------------------------- |
181 | 135 |
|
182 | 136 | # Example configuration for intersphinx: refer to the Python standard library. |
183 | 137 | intersphinx_mapping = {'https://docs.python.org/': None} |
| 138 | + |
| 139 | +# -- Options for autodoc extension -------------------------------------------- |
| 140 | + |
| 141 | +autodoc_mock_imports = [ |
| 142 | + 'attr', |
| 143 | +] |
0 commit comments