Skip to content
Snippets Groups Projects
Commit 6b6f71c4 authored by Daniel Vonk's avatar Daniel Vonk Committed by Daniel Vonk
Browse files

Add conf.py for sphinx

(cherry picked from commit b9216015)
parent 84e671a7
No related branches found
No related tags found
2 merge requests!19Merge develop into main,!13Add CI System to Sassena and Modernize Build-System
"""
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 os
import datetime
currentDateTime = datetime.datetime.now()
date = currentDateTime.date()
# -- Project information -----------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
project = 'Sassena'
version = os.environ.get('CMAKE_PROJECT_VERSION') or ''
author = 'ABCD'
project_copyright = '{}, Sassena Authors'.format(date.year)
# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
extensions = ['sphinx_rtd_theme']
root_doc = 'index'
# exclude_patterns = ['sphinx', 'doxybook']
suppress_warnings = ['misc.highlighting_failure']
html_theme = 'sphinx_rtd_theme'
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment