aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--doc/requirements.txt2
-rw-r--r--setup.py6
2 files changed, 6 insertions, 2 deletions
diff --git a/doc/requirements.txt b/doc/requirements.txt
index 4c7016617..761815722 100644
--- a/doc/requirements.txt
+++ b/doc/requirements.txt
@@ -1,6 +1,6 @@
-r ../pyGHDL/requirements.txt
-pyTooling.Packaging>=0.4.0
+pyTooling.Packaging>=0.5.0
sphinx>=3.4.2
#recommonmark>=0.7.1
diff --git a/setup.py b/setup.py
index b834152ad..085d7f8e4 100644
--- a/setup.py
+++ b/setup.py
@@ -61,5 +61,9 @@ DescribePythonPackageHostedOnGitHub(
"Topic :: Software Development :: Compilers",
"Topic :: Software Development :: Testing",
"Topic :: Utilities",
- ]
+ ],
+ consoleScripts={
+ "ghdl-ls": "pyGHDL.cli.lsp:main",
+ "ghdl-dom": "pyGHDL.cli.dom:main"
+ }
)