build: remove boto3 dependency from requirements

The boto3 dependency is no longer needed in the project, so it has been removed from both requirements.txt and setup.py to simplify dependencies and reduce package size.
This commit is contained in:
2025-06-07 07:24:28 -07:00
parent 161a4d42d6
commit f1c6a0b3b2
2 changed files with 1 additions and 2 deletions

View File

@ -1,2 +1 @@
boto3==1.38.32
httpx==0.28.1 httpx==0.28.1

View File

@ -8,7 +8,7 @@ with open("README.md", "r", encoding="utf-8") as fh:
# with open("songbox/requirements.txt", "r", encoding="utf-8") as fh: # 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 = [line.strip() for line in fh if line.strip() and not line.startswith("#")]
requirements = ["httpx==0.28.1", "boto3==1.38.32"] requirements = ["httpx==0.28.1"]
setup( setup(
name="songbox", name="songbox",