python-devicetree/doc/source/conf.py
Martí Bolívar aeede9e46a add initial docs
These are fresh docs just to get people oriented:

    make -C doc html

Signed-off-by: Martí Bolívar <marti.bolivar@nordicsemi.no>
2021-03-17 23:05:10 -07:00

37 lines
876 B
Python

# Configuration file for the Sphinx documentation builder.
import sphinx_rtd_theme
# -- Project information -----------------------------------------------------
project = 'python-devicetree'
# Placeholders based on initial provenance of the documentation.
copyright = u'2021 Zephyr Project members and individual contributors'
author = 'Zephyr Project'
# The full version, including alpha/beta/rc tags
release = '0.0.0'
# -- General configuration ---------------------------------------------------
extensions = [
'sphinx.ext.autodoc',
'sphinx_rtd_theme',
# Keep this sorted; don't just append new items.
]
templates_path = ['_templates']
exclude_patterns = []
rst_epilog = f'''
.. |release| replace:: {release}
'''
# -- Options for HTML output -------------------------------------------------
html_theme = 'sphinx_rtd_theme'
html_static_path = []