From f5f32fcbceef77b8765ef84322d913a07b9b8bbb Mon Sep 17 00:00:00 2001 From: Joel <100006388+joelrico@users.noreply.github.com> Date: Sat, 24 Dec 2022 15:31:34 -0800 Subject: [PATCH] Hotfix Fixed missing dependency --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 182e781..66a8a88 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ this_directory = Path(__file__).parent -VERSION = '0.1.5' +VERSION = '0.1.5.1' DESCRIPTION = 'Python wrapper for Genius API' long_description = (this_directory / "README.md").read_text() @@ -20,7 +20,7 @@ long_description=long_description, url="https://github.com/jjoeldaniel/genius.py", packages=find_packages(), - install_requires=['requests'], + install_requires=['requests', 'beautifulsoup4'], keywords=['python', 'genius', 'api-wrapper'], classifiers=[ "Development Status :: 2 - Pre-Alpha",