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:
@ -1,2 +1 @@
|
|||||||
boto3==1.38.32
|
|
||||||
httpx==0.28.1
|
httpx==0.28.1
|
||||||
|
2
setup.py
2
setup.py
@ -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",
|
||||||
|
Reference in New Issue
Block a user