3
0
Fork 0
mirror of https://github.com/YosysHQ/sby.git synced 2025-04-05 06:04:06 +00:00
sby/docs/source/conf.py
2024-06-10 18:41:15 +12:00

27 lines
597 B
Python

#!/usr/bin/env python3
import sys
import os
from sphinx.application import Sphinx
sys.path.append(os.path.abspath(f"{__file__}/../../../sbysrc"))
project = 'YosysHQ SBY'
author = 'YosysHQ GmbH'
copyright = '2023 YosysHQ GmbH'
# select HTML theme
html_theme = "furo-ys"
html_css_files = ['custom.css']
# These folders are copied to the documentation's HTML output
html_static_path = ['../static']
extensions = ['sphinx.ext.autosectionlabel']
extensions += ['sphinxarg.ext']
def setup(app: Sphinx) -> None:
from furo_ys.lexers.SBYLexer import SBYLexer
app.add_lexer("sby", SBYLexer)