Files
AMBER/source/conf.py
Jakob Lass c70d7759d0
All checks were successful
Gitea Actions Demo / build_test (3.10.17) (push) Successful in 18s
Gitea Actions Demo / build_test (3.11.12) (push) Successful in 18s
Gitea Actions Demo / build_test (3.12.10) (push) Successful in 16s
Gitea Actions Demo / build_test (3.13.3) (push) Successful in 17s
Gitea Actions Demo / build_test (3.9.22) (push) Successful in 14s
Release workflow / single_test (3.13.3) (release) Successful in 13s
Release workflow / Build wheels for PyPI (3.13.3) (release) Successful in 11s
Update of tutorial
2025-08-21 13:23:53 +02:00

39 lines
1.2 KiB
Python

# 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 = 'AMBER'
copyright = '2025, J. Lass, V. Cohen, B. B. Haro, & D. G. Mazzone'
author = 'J. Lass, V. Cohen, B. B. Haro, & D. G. Mazzone'
release = '1.0.1'
# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
extensions = [
'nbsphinx', # allows notebooks
'myst_parser', # allows markdown
'IPython.sphinxext.ipython_console_highlighting',
]
source_suffix = {
'.rst': 'restructuredtext',
'.txt': 'markdown',
'.md': 'markdown',
}
templates_path = ['_templates']
exclude_patterns = ['**.ipynb_checkpoints']
# -- Options for HTML output -------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
html_theme = 'pyramid'
html_static_path = ['_static']
output_dir = ''