Skip to content
Snippets Groups Projects
conf.py 468 B
Newer Older
Florian Fischer's avatar
Florian Fischer committed
# conf.py
import os
import sys
sys.path.insert(0, os.path.abspath('.'))

project = 'Quality Control Format'
copyright = '2025, Christian Überall, Florian Fischer, Marcel Bartholet'
author = 'Christian Überall, Florian Fischer, Marcel Bartholet'
Florian Fischer's avatar
Florian Fischer committed

# Erweiterungen
extensions = [
    'sphinx.ext.autodoc',
    'sphinx.ext.napoleon',
    'sphinx.ext.viewcode',
]

templates_path = ['_templates']
exclude_patterns = []

html_theme = 'furo'
html_static_path = ['_static']