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