mirror of
https://github.com/YosysHQ/sby.git
synced 2025-04-06 14:24:08 +00:00
docs: Make sphinx-argparse work independently of sphinx's cwd
This commit is contained in:
parent
27e20fd5c3
commit
c52acf2a1f
|
@ -1,4 +1,7 @@
|
||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
|
import sys
|
||||||
|
import os
|
||||||
|
|
||||||
project = 'YosysHQ SBY'
|
project = 'YosysHQ SBY'
|
||||||
author = 'YosysHQ GmbH'
|
author = 'YosysHQ GmbH'
|
||||||
copyright = '2023 YosysHQ GmbH'
|
copyright = '2023 YosysHQ GmbH'
|
||||||
|
@ -40,3 +43,5 @@ html_theme_options = {
|
||||||
|
|
||||||
extensions = ['sphinx.ext.autosectionlabel']
|
extensions = ['sphinx.ext.autosectionlabel']
|
||||||
extensions += ['sphinxarg.ext']
|
extensions += ['sphinxarg.ext']
|
||||||
|
|
||||||
|
sys.path.append(os.path.abspath(f"{__file__}/../../../sbysrc"))
|
||||||
|
|
|
@ -6,6 +6,6 @@ one of the available CAD suites, it can be called as follows. Note that this in
|
||||||
available via `sby --help`. For more information on installation, see :ref:`install-doc`.
|
available via `sby --help`. For more information on installation, see :ref:`install-doc`.
|
||||||
|
|
||||||
.. argparse::
|
.. argparse::
|
||||||
:filename: ../sbysrc/sby_cmdline.py
|
:module: sby_cmdline
|
||||||
:func: parser_func
|
:func: parser_func
|
||||||
:prog: sby
|
:prog: sby
|
||||||
|
|
Loading…
Reference in a new issue