From d78e015d470e25f1b2afa461803511622b37ee76 Mon Sep 17 00:00:00 2001 From: Nathan Gillett Date: Thu, 14 May 2026 05:49:13 -0500 Subject: [PATCH] Add root .gitignore for caches and virtualenvs Ignore Python bytecode, pytest cache, venvs, and build artifacts. 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/