aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2020-03-21 08:22:37 +0100
committerTristan Gingold <tgingold@free.fr>2020-03-21 08:22:37 +0100
commit79af4ca95f6887309bdcb21fece4704d6e1776c3 (patch)
tree95f05ef153eeb326b9fda54a666a19e66d11c511
parent27824b89e270759419cf9854e7470388acfa7716 (diff)
downloadghdl-79af4ca95f6887309bdcb21fece4704d6e1776c3.tar.gz
ghdl-79af4ca95f6887309bdcb21fece4704d6e1776c3.tar.bz2
ghdl-79af4ca95f6887309bdcb21fece4704d6e1776c3.zip
python/setup.py: add missing dependency.
-rw-r--r--python/setup.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/python/setup.py b/python/setup.py
index 17b4a17e5..6188e1f5a 100644
--- a/python/setup.py
+++ b/python/setup.py
@@ -38,6 +38,12 @@ setup(
'libghdl.thin.vhdl',
'vhdl_langserver'
],
+ # List run-time dependencies here. For an analysis of "install_requires"
+ # vs pip's requirements files see:
+ # https://packaging.python.org/en/latest/requirements.html
+ install_requires=[
+ 'attrs'
+ ],
# To provide executable scripts, use entry points in preference to the
# "scripts" keyword. Entry points provide cross-platform support and allow
# pip to create the appropriate form of executable for the target platform.