From 466efad6406def930505b8ceb9feb208f5bd69a1 Mon Sep 17 00:00:00 2001 From: Thomas Hallock Date: Tue, 9 Sep 2025 12:13:32 -0500 Subject: [PATCH] Initial project setup with dependencies MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 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 --- .gitignore | 29 +++++++++++++++++++++++++++++ requirements.txt | 1 + 2 files changed, 30 insertions(+) create mode 100644 .gitignore create mode 100644 requirements.txt diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..29051cec --- /dev/null +++ b/.gitignore @@ -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 +*~ \ No newline at end of file diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 00000000..b96a5d44 --- /dev/null +++ b/requirements.txt @@ -0,0 +1 @@ +pyyaml>=6.0 \ No newline at end of file