From 39a09438d13b3dd45c7d20f79b119ffa0ec01fd4 Mon Sep 17 00:00:00 2001 From: Tomer Shlomo Date: Wed, 20 Jan 2021 18:13:52 +0200 Subject: [PATCH] added importlib-metadata as requirement --- requirements.txt | 3 ++- setup.py | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index 10916f8..3ef1a11 100644 --- a/requirements.txt +++ b/requirements.txt @@ -4,4 +4,5 @@ pymongo==3.11.0 # We need the bson packaged provided by pymongo marshmallow==2.21.0 cryptography==3.2.1 colorama==0.4.4 -click==7.0 \ No newline at end of file +click==7.0 +importlib-metadata==3.4.0 \ No newline at end of file diff --git a/setup.py b/setup.py index 8ce2130..b0e223c 100755 --- a/setup.py +++ b/setup.py @@ -18,7 +18,8 @@ def read(path): 'marshmallow<=3.10.0', # We have temporary backwards compatibility for 2.X, but also support 3.X 'cryptography>=2.8', 'colorama<=0.4.4', - 'click<=7.2' + 'click<=7.2', + 'importlib-metadata>=2.0.0,<=3.4.0' ] setup(