fixed missing installation dependency

This commit is contained in:
Bryan Bailey
2022-05-25 19:02:17 -04:00
parent 4b6a8cf821
commit 24ae5b9393
2 changed files with 2 additions and 1 deletions

View File

@@ -28,5 +28,5 @@ setuptools.setup(
'yoink = yoink.cli:yoink'
]
},
install_requires=['click', 'bs4', 'requests']
install_requires=['click', 'bs4', 'requests', 'click-default-group']
)