1cc1dc7a3Sopenharmony_ci# Configuration file for the Sphinx documentation builder.
2cc1dc7a3Sopenharmony_ci#
3cc1dc7a3Sopenharmony_ci# This file only contains a selection of the most common options. For a full
4cc1dc7a3Sopenharmony_ci# list see the documentation:
5cc1dc7a3Sopenharmony_ci# https://www.sphinx-doc.org/en/master/usage/configuration.html
6cc1dc7a3Sopenharmony_ci
7cc1dc7a3Sopenharmony_ci# -- Path setup --------------------------------------------------------------
8cc1dc7a3Sopenharmony_ci
9cc1dc7a3Sopenharmony_ci# If extensions (or modules to document with autodoc) are in another directory,
10cc1dc7a3Sopenharmony_ci# add these directories to sys.path here. If the directory is relative to the
11cc1dc7a3Sopenharmony_ci# documentation root, use os.path.abspath to make it absolute, like shown here.
12cc1dc7a3Sopenharmony_ci#
13cc1dc7a3Sopenharmony_ciimport os
14cc1dc7a3Sopenharmony_ciimport sys
15cc1dc7a3Sopenharmony_cisys.path.insert(0, os.path.abspath('../'))
16cc1dc7a3Sopenharmony_cisys.path.insert(0, os.path.abspath('../testlib'))
17cc1dc7a3Sopenharmony_ci
18cc1dc7a3Sopenharmony_ci
19cc1dc7a3Sopenharmony_ci# -- Project information -----------------------------------------------------
20cc1dc7a3Sopenharmony_ci
21cc1dc7a3Sopenharmony_ciproject = 'astcenc'
22cc1dc7a3Sopenharmony_cicopyright = '2020, Arm Limited'
23cc1dc7a3Sopenharmony_ciauthor = 'Arm Limited'
24cc1dc7a3Sopenharmony_ci
25cc1dc7a3Sopenharmony_ci
26cc1dc7a3Sopenharmony_ci# -- General configuration ---------------------------------------------------
27cc1dc7a3Sopenharmony_ci
28cc1dc7a3Sopenharmony_ci# Add any Sphinx extension module names here, as strings. They can be
29cc1dc7a3Sopenharmony_ci# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
30cc1dc7a3Sopenharmony_ci# ones.
31cc1dc7a3Sopenharmony_ciextensions = [
32cc1dc7a3Sopenharmony_ci    'sphinx.ext.autodoc',
33cc1dc7a3Sopenharmony_ci    'sphinx.ext.napoleon',
34cc1dc7a3Sopenharmony_ci    'sphinx.ext.coverage'
35cc1dc7a3Sopenharmony_ci]
36cc1dc7a3Sopenharmony_ci
37cc1dc7a3Sopenharmony_ci# Add any paths that contain templates here, relative to this directory.
38cc1dc7a3Sopenharmony_citemplates_path = ['_templates']
39cc1dc7a3Sopenharmony_ci
40cc1dc7a3Sopenharmony_ci# List of patterns, relative to source directory, that match files and
41cc1dc7a3Sopenharmony_ci# directories to ignore when looking for source files.
42cc1dc7a3Sopenharmony_ci# This pattern also affects html_static_path and html_extra_path.
43cc1dc7a3Sopenharmony_ciexclude_patterns = []
44cc1dc7a3Sopenharmony_ci
45cc1dc7a3Sopenharmony_ci
46cc1dc7a3Sopenharmony_ci# -- Options for HTML output -------------------------------------------------
47cc1dc7a3Sopenharmony_ci
48cc1dc7a3Sopenharmony_ci# The theme to use for HTML and HTML Help pages.  See the documentation for
49cc1dc7a3Sopenharmony_ci# a list of builtin themes.
50cc1dc7a3Sopenharmony_ci#
51cc1dc7a3Sopenharmony_cihtml_theme = 'classic'
52cc1dc7a3Sopenharmony_ci
53cc1dc7a3Sopenharmony_ci# Add any paths that contain custom static files (such as style sheets) here,
54cc1dc7a3Sopenharmony_ci# relative to this directory. They are copied after the builtin static files,
55cc1dc7a3Sopenharmony_ci# so a file named "default.css" will overwrite the builtin "default.css".
56cc1dc7a3Sopenharmony_cihtml_static_path = ['_static']
57