Files
mytoolkit/pyproject.toml
T
Zhengshou Lai ac605c2c17 feat(mytoolkit): add voice command and improve docx post-processing
- Add voice/TTS CLI command via Volcengine WebSocket API
- Inject suppressAutoHyphens into all docx paragraphs in post-process
- Apply post-process fixes to all templates (not just default)
- Update review template: Cambria+SimSun fonts, 11pt for headings
- Sync default/review docx template formatting
2026-05-27 16:17:47 +08:00

24 lines
434 B
TOML

[project]
name = "mytoolkit"
version = "0.1.0"
description = "Personal CLI toolkit"
requires-python = ">=3.9"
dependencies = [
"click>=8.0",
"openai>=1.60",
"pillow>=11.3.0",
"pypdf>=6.10.1",
"python-docx>=1.1.0",
"websockets>=13.0",
]
[project.scripts]
mytoolkit = "bin.cli:main"
[tool.hatch.build.targets.wheel]
packages = ["bin"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"