diff --git a/setup.py b/setup.py index f49383e..b63f8e4 100644 --- a/setup.py +++ b/setup.py @@ -5,8 +5,13 @@ from setuptools import setup, find_packages with open("README.md", "r", encoding="utf-8") as fh: long_description = fh.read() -with open("requirements.txt", "r", encoding="utf-8") as fh: - requirements = [line.strip() for line in fh if line.strip() and not line.startswith("#")] +# with open("songbox/requirements.txt", "r", encoding="utf-8") as fh: +# requirements = [line.strip() for line in fh if line.strip() and not line.startswith("#")] + +requirements = [ + "httpx==0.28.1", + "boto3==1.38.32" +] setup( name="songbox", @@ -21,7 +26,6 @@ setup( classifiers=[ "Development Status :: 4 - Beta", "Intended Audience :: Developers", - "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.7",