From 4e527517364e9e894a7b36915ecde0d7535327e1 Mon Sep 17 00:00:00 2001 From: Noiredd Date: Sun, 10 May 2020 21:20:45 +0200 Subject: [PATCH] fix: installer: properly listed all dependencies --- tools/deptest.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tools/deptest.py b/tools/deptest.py index 9aa4dd6..019ed12 100644 --- a/tools/deptest.py +++ b/tools/deptest.py @@ -6,9 +6,11 @@ dependencies = { #package name: import module - 'requests_html': 'requests_html', + 'beautifulsoup4': 'bs4', 'matplotlib': 'matplotlib', 'pillow': 'PIL', + 'requests': 'requests', + 'requests_html': 'requests_html', 'semantic_version': 'semantic_version' }