Files
Openness-Score/docs/source/conf.py
T
Michał Żygowski 7d2eff1981 Create autogenerated code documentation
Signed-off-by: Michał Żygowski <michal.zygowski@3mdeb.com>
2023-05-31 12:43:23 +02:00

38 lines
1.1 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 = 'Dasharo Openness Score'
copyright = '2023, Dasharo Team'
author = 'Dasharo Team'
release = 'v0.1.0'
# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
extensions = []
templates_path = ['_templates']
exclude_patterns = []
# -- Options for HTML output -------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
html_theme = 'sphinx_rtd_theme'
html_static_path = ['_static']
import os
import sys
sys.path.insert(0, os.path.abspath('../../openness-score/'))
extensions.append('sphinx.ext.autodoc')
extensions.append('sphinx.ext.viewcode')