mirror of
https://github.com/YosysHQ/sby.git
synced 2025-04-04 13:54:07 +00:00
24 lines
558 B
Python
24 lines
558 B
Python
#!/usr/bin/env python3
|
|
project = 'YosysHQ SBY'
|
|
author = 'YosysHQ GmbH'
|
|
copyright ='2021 YosysHQ GmbH'
|
|
|
|
# select HTML theme
|
|
#html_theme = 'alabaster'
|
|
|
|
# These folders are copied to the documentation's HTML output
|
|
html_static_path = ['_static']
|
|
|
|
# code blocks style
|
|
pygments_style = 'colorful'
|
|
highlight_language = 'systemverilog'
|
|
|
|
html_theme_options = {
|
|
'extra_nav_links' : {
|
|
'YosysHQ Docs' : 'https://yosyshq.readthedocs.io' ,
|
|
'YosysHQ Website' : 'https://www.yosyshq.com',
|
|
},
|
|
# 'logo' : 'logo.png',
|
|
'fixed_sidebar' : True,
|
|
}
|