feat(scripts): 添加批量生成 YouTube Studio 内容管理器 URL 的脚本

This commit is contained in:
2026-08-21 18:21:03 +08:00
commit c1b39e9466
29 changed files with 4020 additions and 0 deletions

22
pyproject.toml Normal file
View File

@@ -0,0 +1,22 @@
[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",
]
[dependency-groups]
dev = [
"pytest>=8.0",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.uv]
# 脚本在 scripts/ 下,非 Python 包,无需打包构建
package = false