mirror of
https://github.com/xfgryujk/blivechat.git
synced 2026-08-19 09:43:28 +08:00
29 lines
641 B
TOML
29 lines
641 B
TOML
[build-system]
|
|
requires = ["pdm-backend"]
|
|
build-backend = "pdm.backend"
|
|
|
|
[project]
|
|
name = "blivechat-text-to-speech"
|
|
dynamic = ["version"]
|
|
description = "blivechat语音播报插件"
|
|
requires-python = ">=3.12"
|
|
authors = [{name = "xfgryujk", email = "xfgryujk@126.com"}]
|
|
license = {file = "LICENSE"}
|
|
classifiers = ["Private :: Do Not Upload"]
|
|
dependencies = [
|
|
"blcsdk",
|
|
"pyttsx3==2.90",
|
|
]
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"pyinstaller~=6.20.0",
|
|
]
|
|
|
|
[tool.pdm]
|
|
version = {source = "file", path = "plugin.json", pattern = '"version": "([^"]+)"'}
|
|
distribution = false
|
|
|
|
[tool.uv.sources]
|
|
blcsdk = {path = "../../blcsdk/", editable = true}
|