From eac722e37f8a3befa5de2f024dc63347ceed0254 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=83=9D=E3=82=AD?= Date: Sat, 7 Jun 2025 06:42:07 -0700 Subject: [PATCH] build: update dependencies and remove MIT license classifier - Replace requirements.txt loading with direct dependency specification - Remove MIT license classifier as it's no longer applicable --- setup.py | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) 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",