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