Files
StudioLift/pyproject.toml
Sidney Zhang bcfe0f4a29 feat(scripts): 添加 YouTube Studio 群组名到 entity_id 批量解析脚本
支持 Playwright 自动捕获鉴权、requests 回放查询、Excel/CSV 输出,包含在线捕获和离线回放两种模式
2026-08-24 14:05:03 +08:00

24 lines
518 B
TOML

[project]
name = "StudioLift"
version = "0.1.0"
description = "StudioLift :一个 YouTube Studio 工具集,提供 URL 批量拼接、分析 CSV 导出下载等功能。"
requires-python = ">=3.10"
dependencies = [
"pandas>=2.0",
"openpyxl>=3.1",
"playwright>=1.40",
"requests>=2.31",
]
[dependency-groups]
dev = [
"pytest>=8.0",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.uv]
# 脚本在 scripts/ 下,非 Python 包,无需打包构建
package = false