Files
StudioLift/pyproject.toml
Sidney Zhang b8bd749f43 feat(scripts): 支持动态指标和维度参数配置
为 build_studio_urls.py 添加指标和维度的可配置支持,包括:
- 新增 metrics.json 和 dimensions.json 映射文件加载
- 支持中文/英文别名映射及指标代码透传
- 列别名扩展以识别"指标"和"维度"列
- 空值时自动回退到 CONFIG 默认值
2026-08-24 15:28:48 +08:00

24 lines
518 B
TOML

[project]
name = "StudioLift"
version = "0.3.4"
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