-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathconf.py
More file actions
38 lines (27 loc) · 829 Bytes
/
conf.py
File metadata and controls
38 lines (27 loc) · 829 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# Configuration file for the Sphinx documentation builder.
import sphinx_rtd_theme
# -- Project information
project = 'CMLibs Widgets'
copyright = '2022, University of Auckland'
author = 'University of Auckland'
release = '0.1'
version = '0.1.0'
# -- General configuration
extensions = [
'sphinx.ext.duration',
'sphinx.ext.doctest',
'sphinx.ext.autodoc',
'sphinx.ext.autosummary',
'sphinx.ext.intersphinx',
]
intersphinx_mapping = {
'python': ('https://docs.python.org/3/', None),
'sphinx': ('https://www.sphinx-doc.org/en/master/', None),
}
intersphinx_disabled_domains = ['std']
templates_path = ['_templates']
# -- Options for HTML output
html_theme = "sphinx_rtd_theme"
html_theme_path = [sphinx_rtd_theme.get_html_theme_path()]
# -- Options for EPUB output
epub_show_urls = 'footnote'