From 26fb63d93968ab4537fa1ea4324fb64bee1bebdb Mon Sep 17 00:00:00 2001 From: Puqns67 Date: Thu, 26 Sep 2024 21:10:14 +0800 Subject: [PATCH] release: ncmlyrics 0.1.0a1 --- pyproject.toml | 13 +++++++++++++ src/ncmlyrics/constant.py | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 33a6437..b8a3f4d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,6 +14,19 @@ requires-python = ">=3.12" readme = "README.md" license = { text = "GPL-3.0-or-later" } dynamic = ["version"] +classifiers = [ + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.12", + "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)", + "Operating System :: OS Independent", + "Development Status :: 1 - Planning", + "Environment :: Console", + "Natural Language :: Chinese (Simplified)", +] + +[project.urls] +Homepage = "https://github.com/Puqns67/ncmlyrics" +Issues = "https://github.com/Puqns67/ncmlyrics/issues" [build-system] requires = ["hatchling"] diff --git a/src/ncmlyrics/constant.py b/src/ncmlyrics/constant.py index 06137a2..616b8c3 100644 --- a/src/ncmlyrics/constant.py +++ b/src/ncmlyrics/constant.py @@ -2,7 +2,7 @@ from httpx import URL from platformdirs import PlatformDirs APP_NAME = "ncmlyrics" -APP_VERSION = "0.1.0" +APP_VERSION = "0.1.0a1" NCM_API_BASE_URL = URL("https://interface.music.163.com/api")