This is upon request from someone who is using this library and wants the latest up on pypi. Signed-off-by: Martí Bolívar <marti.bolivar@nordicsemi.no>
37 lines
876 B
Python
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.2'
|
|
|
|
|
|
# -- 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 = []
|