diff --git a/docs/sphinx/conf.py b/docs/sphinx/conf.py new file mode 100644 index 0000000000000000000000000000000000000000..d5cc10a811444d103946fdc2cc159dcb9a57d97a --- /dev/null +++ b/docs/sphinx/conf.py @@ -0,0 +1,32 @@ +""" +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' +