From 24ae5b9393884d0720bdbc13ce455bbac1ba09f0 Mon Sep 17 00:00:00 2001 From: Bryan Bailey Date: Wed, 25 May 2022 19:02:17 -0400 Subject: [PATCH] fixed missing installation dependency --- .gitignore | 1 + setup.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 06647ff..0badad1 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ env +venv __pycache__ .pytest_cache .coverage diff --git a/setup.py b/setup.py index e52b072..5c7c401 100644 --- a/setup.py +++ b/setup.py @@ -28,5 +28,5 @@ setuptools.setup( 'yoink = yoink.cli:yoink' ] }, - install_requires=['click', 'bs4', 'requests'] + install_requires=['click', 'bs4', 'requests', 'click-default-group'] ) \ No newline at end of file