aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--doc/conf.py8
-rw-r--r--pyGHDL/requirements.txt3
2 files changed, 5 insertions, 6 deletions
diff --git a/doc/conf.py b/doc/conf.py
index baf7640f9..7eaf6c9e1 100644
--- a/doc/conf.py
+++ b/doc/conf.py
@@ -82,11 +82,6 @@ except Exception as ex:
print(ex)
rst_prolog = ""
-# -- Options for HTML output ----------------------------------------------
-
-
-# Output file base name for HTML help builder.
-htmlhelp_basename = 'GHDLdoc'
# ==============================================================================
@@ -101,7 +96,8 @@ html_theme_options = {
}
html_static_path = ['_static']
-html_extra_path = [str(Path(__file__).resolve().parent.parent / 'public')]
+# '/public' will contain the output from gnatdoc
+html_extra_path = [str(Path(__file__).resolve().parent.parent / 'public')] # FIXME: if not exist, create directory
html_logo = str(Path(html_static_path[0]) / 'logo.png')
html_favicon = str(Path(html_static_path[0]) / 'icon.png')
diff --git a/pyGHDL/requirements.txt b/pyGHDL/requirements.txt
index d373926f3..f985d97fa 100644
--- a/pyGHDL/requirements.txt
+++ b/pyGHDL/requirements.txt
@@ -1,2 +1,5 @@
+# FIXME: remove this dependency. Only lsp/lsp.py uses it.
+attrs
+
pydecor>=2.0.1
pyVHDLModel>=0.7.3