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

Add conf.py for sphinx

parent 3efbda45
No related branches found
No related tags found
No related merge requests found
Pipeline #369535 passed
"""
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