aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2021-09-23 03:55:44 +0300
committerFrederick Muriuki Muriithi2021-09-23 04:01:47 +0300
commit8d9bc0f29ce9208306915b079818e6f0c31785e2 (patch)
treed6d89a76b27aa309b65406ead4b9b37142f48c6b
parent95c5c0e73bffbf0287a17309e703063ee54d25ba (diff)
downloadgenenetwork3-8d9bc0f29ce9208306915b079818e6f0c31785e2.tar.gz
Add missing dependencies causing pylint to fail
* Add some dependencies used by the system that were missing in the test environment, leading to the pylint step failing.
-rw-r--r--requirements.txt2
-rw-r--r--setup.py2
2 files changed, 4 insertions, 0 deletions
diff --git a/requirements.txt b/requirements.txt
index f94c86f..d332a96 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -33,3 +33,5 @@ urllib3==1.26.4
varint==1.0.2
Werkzeug==1.0.1
wrapt==1.12.1
+plotly==4.14.3
+flask-cors==3.0.9
diff --git a/setup.py b/setup.py
index 3f0922b..98a076f 100644
--- a/setup.py
+++ b/setup.py
@@ -20,6 +20,8 @@ setup(author='Bonface M. K.',
"requests==2.25.1"
"scipy==1.6.0"
"sqlalchemy-stubs==0.4"
+ "plotly==4.14.3"
+ "flask-cors==3.0.9"
],
license='GPLV3',
long_description=open('README.md').read(),