2023-05-03 09:56:53 +02:00
|
|
|
# Configuration file for the Sphinx documentation builder.
|
|
|
|
#
|
|
|
|
# For the full list of built-in configuration values, see the documentation:
|
|
|
|
# https://www.sphinx-doc.org/en/master/usage/configuration.html
|
|
|
|
|
|
|
|
# -- Project information -----------------------------------------------------
|
|
|
|
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
|
|
|
|
|
|
|
|
project = 'CCP'
|
2024-10-10 17:21:40 +02:00
|
|
|
copyright = '2024, Marco Lettere, Alfredo Oliviero'
|
|
|
|
author = 'Marco Lettere, Alfredo Oliviero'
|
|
|
|
release = '0.2.0'
|
2023-05-03 09:56:53 +02:00
|
|
|
|
|
|
|
# -- General configuration ---------------------------------------------------
|
|
|
|
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
|
|
|
|
|
2024-07-10 17:10:47 +02:00
|
|
|
extensions = [
|
2024-07-23 19:24:04 +02:00
|
|
|
'myst_parser',
|
2024-07-10 17:10:47 +02:00
|
|
|
'sphinx_markdown_tables',
|
|
|
|
]
|
2023-05-03 09:56:53 +02:00
|
|
|
|
2024-07-23 19:24:04 +02:00
|
|
|
source_suffix = {
|
|
|
|
'.rst': 'restructuredtext',
|
|
|
|
'.md': 'markdown',
|
|
|
|
}
|
2023-05-03 09:56:53 +02:00
|
|
|
|
2024-07-23 19:24:04 +02:00
|
|
|
templates_path = ['_templates']
|
2023-05-03 09:56:53 +02:00
|
|
|
|
2024-07-23 19:24:04 +02:00
|
|
|
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store', 'venv']
|
2023-05-03 09:56:53 +02:00
|
|
|
|
|
|
|
# -- Options for HTML output -------------------------------------------------
|
|
|
|
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
|
|
|
|
|
2023-05-05 15:15:18 +02:00
|
|
|
html_theme = 'sphinx_rtd_theme'
|
2023-05-04 13:20:14 +02:00
|
|
|
html_baseurl = '/docs/'
|
2023-05-03 09:56:53 +02:00
|
|
|
html_static_path = ['_static']
|