From 0c0dc860e57f781113eff856d3adc5cf57a4a8eb Mon Sep 17 00:00:00 2001 From: William Zijie Zhang Date: Thu, 26 Mar 2026 00:04:13 -0400 Subject: [PATCH] Add .gitignore for build artifacts and compiled extensions Co-Authored-By: Claude Opus 4.6 (1M context) --- .gitignore | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..75cc811 --- /dev/null +++ b/.gitignore @@ -0,0 +1,13 @@ +# Build artifacts +build/ +dist/ + +# Python +__pycache__/ +*.py[cod] +*.egg-info/ + +# Compiled extensions +*.so +*.dylib +*.dll