3
0
Fork 0
mirror of https://github.com/YosysHQ/sby.git synced 2025-04-06 14:24:08 +00:00
sby/docs/source/conf.py
Krystine Sherwin 5426bee107
Use furo-ys
2024-05-14 12:54:30 +12:00

21 lines
441 B
Python

#!/usr/bin/env python3
import sys
import os
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']