24 lines
585 B
TOML
24 lines
585 B
TOML
[tool.poetry]
|
|
name = "ppt2html-eval-benchmark"
|
|
version = "0.1.0"
|
|
description = "PPT -> HTML 변환 품질 벤치마크"
|
|
authors = ["Your Name <you@example.com>"]
|
|
packages = [{ include = "eval_ppt2html", from = "src" }]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.10"
|
|
python-pptx = "^0.6.23"
|
|
pdf2image = "^1.17.0"
|
|
playwright = "^1.48.0"
|
|
pillow = "^11.0.0"
|
|
typer = "^0.12.3"
|
|
rich = "^13.9.0"
|
|
|
|
# 이하: 선택적으로 추가
|
|
torch = "^2.4.0" # LPIPS 등
|
|
transformers = "^4.44.0" # BERTScore 등
|
|
sacrebleu = "^2.4.3"
|
|
|
|
[tool.poetry.scripts]
|
|
ppt2html-eval = "eval_ppt2html.cli:app"
|