From 2a651984201a6c05888503c23ff16c627ef0a3da Mon Sep 17 00:00:00 2001 From: Elise Shanholtz Date: Wed, 24 Jun 2020 14:40:10 -0700 Subject: [PATCH] fix: add dependency to install requires --- setup.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 1c6c5a8c4..b3eeec82d 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,10 @@ exec(f.read()) def getRequires(): - deps = ['python_http_client>=3.2.1'] + deps = [ + 'python_http_client>=3.2.1', + 'starkbank-ecdsa>=1.0.0' + ] return deps