mirror of
https://github.com/YosysHQ/sby.git
synced 2025-04-05 06:04:06 +00:00
27 lines
597 B
Python
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)
|