feat: 初始化 doco 子项目 P1 阶段(视频双路拆分预处理)

This commit is contained in:
simonkoson
2026-06-12 16:31:21 +08:00
parent 70e2647fae
commit 0e6322ad97
10 changed files with 1149 additions and 13 deletions
+36
View File
@@ -0,0 +1,36 @@
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "doco"
version = "0.1.0"
description = "TPS 中台 - 终版文稿生成子模块(视频双路拆分 + 三方融合)"
readme = "README.md"
requires-python = ">=3.12"
license = { text = "Proprietary" }
authors = [
{ name = "刘统制片组" }
]
dependencies = [
"Pillow>=10.0.0",
"imagehash>=4.3.1",
"requests>=2.31.0",
"python-dotenv>=1.0.0",
"click>=8.1.0",
"python-docx>=1.1.0",
"anthropic>=0.18.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.4.0",
]
[project.scripts]
doco = "doco.src.cli:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["doco.src*"]