后端包管理器迁移到uv

This commit is contained in:
John Smith
2026-05-08 22:19:05 +08:00
parent 96c47497f0
commit 4aedb5d5f7
33 changed files with 6121 additions and 98 deletions

24
blcsdk/pyproject.toml Normal file
View File

@@ -0,0 +1,24 @@
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[project]
name = "blcsdk"
dynamic = ["version"]
description = "blivechat SDK"
requires-python = ">=3.12"
authors = [{name = "xfgryujk", email = "xfgryujk@126.com"}]
license = {file = "../LICENSE"}
classifiers = ["Private :: Do Not Upload"]
dependencies = [
"aiohttp>=3.9.0",
]
[project.urls]
Homepage = "https://github.com/xfgryujk/blivechat"
Repository = "https://github.com/xfgryujk/blivechat"
Issues = "https://github.com/xfgryujk/blivechat/issues"
[tool.pdm]
version = {source = "file", path = "blcsdk/__init__.py"}
distribution = true

View File

@@ -1,2 +0,0 @@
aiohttp~=3.9.0
pyinstaller~=5.13.2