25217f73fe
Now we only need to change src/damaris/__init__.py and use dch -v $VERSION to make a new version.
42 lines
1.3 KiB
Python
42 lines
1.3 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
|
|
import sys,os
|
|
sys.path.insert(0, os.path.abspath('../src'))
|
|
import damaris
|
|
|
|
# -- Project information -----------------------------------------------------
|
|
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
|
|
|
|
project = 'DAMARIS'
|
|
copyright = '2026, Markus Rosenstihl'
|
|
author = 'Markus Rosenstihl'
|
|
|
|
version = damaris.__version__
|
|
release = damaris.__version__
|
|
|
|
# -- General configuration ---------------------------------------------------
|
|
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
|
|
|
|
extensions = [
|
|
'sphinx.ext.autodoc',
|
|
'sphinx.ext.napoleon',
|
|
'sphinxcontrib.bibtex',
|
|
]
|
|
bibtex_bibfiles = ['bibdesk_db.bib']
|
|
bibtex_bibstyles = ['numeric']
|
|
bibtex_citestyle = 'numeric'
|
|
|
|
templates_path = ['_templates']
|
|
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
|
|
|
|
language = 'en'
|
|
|
|
# -- Options for HTML output -------------------------------------------------
|
|
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
|
|
|
|
#html_theme = 'alabaster'
|
|
html_theme = 'sphinx_rtd_theme'
|
|
html_static_path = ['_static']
|