Files
mytoolkit/pyproject.toml
T
Zhengshou Lai 3e4cf618a8 refactor: restructure mytoolkit with new subcommands and md-to-pdf improvements
- Add new subcommands: convert, preflight, server, templates, webpage
- Migrate config from bin/config.json to ~/.config/mytoolkit
- Fix expand_bookmarks to modify writer objects instead of reader
- Improve md_to_pdf with CJK bookmark support
- Update README and project metadata
2026-05-04 17:19:32 +08:00

22 lines
384 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",
]
[project.scripts]
mytoolkit = "bin.cli:main"
[tool.hatch.build.targets.wheel]
packages = ["bin"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"