Initial project setup with dependencies

- Add .gitignore for Python, macOS, and generated files
- Add requirements.txt with PyYAML dependency

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Thomas Hallock 2025-09-09 12:13:32 -05:00
commit 466efad640
2 changed files with 30 additions and 0 deletions

29
.gitignore vendored Normal file
View File

@ -0,0 +1,29 @@
# Generated output
out/
*.pdf
# Temporary files
*.typ.tmp
temp_*.typ
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
env/
venv/
.venv
# macOS
.DS_Store
.AppleDouble
.LSOverride
# Editor
.vscode/
.idea/
*.swp
*.swo
*~

1
requirements.txt Normal file
View File

@ -0,0 +1 @@
pyyaml>=6.0