1
0

chore: migrate to uv pyproject.toml for dependency management

- Add pyproject.toml with project dependencies
- Remove inline script metadata from yaml2pptx.py
- Update openspec/config.yaml development guidelines
- Update README.md and README_DEV.md documentation
- Archive change: migrate-to-uv-package-management
This commit is contained in:
2026-03-02 22:03:23 +08:00
parent 0a804eacc8
commit 027a832c9a
11 changed files with 1280 additions and 27 deletions

10
pyproject.toml Normal file
View File

@@ -0,0 +1,10 @@
[project]
name = "yaml2pptx"
version = "0.1.0"
requires-python = ">=3.8"
dependencies = [
"python-pptx",
"pyyaml",
"flask",
"watchdog",
]