- Heading3: 12pt, Heading4-5: 11pt - Update demo.md with comprehensive elements (title, headings, tables, lists, quotes, math) - Regenerate demo.docx with auto post-processing - Add python-docx dependency (used for template creation)
23 lines
410 B
TOML
23 lines
410 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",
|
|
]
|
|
|
|
[project.scripts]
|
|
mytoolkit = "bin.cli:main"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["bin"]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|