Sumit Semwal | 96df5d7 | 2023-07-17 16:16:40 +0530 | [diff] [blame] | 1 | # Configuration file for the Sphinx documentation builder. |
| 2 | |
| 3 | # -- Project information |
| 4 | |
| 5 | project = 'Devboards for Android' |
| 6 | copyright = '2023, Linaro Ltd' |
| 7 | author = 'Sumit Semwal' |
| 8 | |
| 9 | release = '0.1' |
| 10 | version = '0.1.0' |
| 11 | |
| 12 | # -- General configuration |
| 13 | |
| 14 | extensions = [ |
| 15 | 'sphinx.ext.duration', |
| 16 | 'sphinx.ext.doctest', |
| 17 | 'sphinx.ext.autodoc', |
| 18 | 'sphinx.ext.autosummary', |
| 19 | 'sphinx.ext.intersphinx', |
| 20 | ] |
| 21 | |
| 22 | source_suffix = '.rst' |
| 23 | |
| 24 | master_doc = 'index' |
| 25 | |
| 26 | intersphinx_mapping = { |
| 27 | 'python': ('https://docs.python.org/3/', None), |
| 28 | 'sphinx': ('https://www.sphinx-doc.org/en/master/', None), |
| 29 | } |
| 30 | intersphinx_disabled_domains = ['std'] |
| 31 | |
| 32 | templates_path = ['_templates'] |
| 33 | |
| 34 | # -- Options for HTML output |
| 35 | |
| 36 | html_theme = 'sphinx_rtd_theme' |
| 37 | |
| 38 | # -- Options for EPUB output |
| 39 | epub_show_urls = 'footnote' |