From 499e6f67bd86829941d678ebe96340b62d77b969 Mon Sep 17 00:00:00 2001 From: Nathan Gillett Date: Thu, 14 May 2026 02:33:23 -0500 Subject: [PATCH] chore: add root .gitignore for caches and virtualenvs Ignore __pycache__, bytecode, .pytest_cache, venv folders, and egg-info, dist, and build outputs from local development. Signed-off-by: Nathan Gillett --- .gitignore | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..9164e40 --- /dev/null +++ b/.gitignore @@ -0,0 +1,16 @@ +# Bytecode and caches +__pycache__/ +*.py[cod] +*$py.class +.pytest_cache/ + +# Virtual environments +.venv/ +venv/ +env/ + +# Packaging / tooling +*.egg-info/ +.eggs/ +dist/ +build/