From 955b378240e07cd103b7909d130595ae8542ae5f Mon Sep 17 00:00:00 2001 From: Bill Date: Sun, 30 Nov 2025 17:56:08 -0500 Subject: [PATCH] chore: expand .gitignore with standard Python entries --- .gitignore | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/.gitignore b/.gitignore index 8fce603..20de3f9 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,32 @@ +# Data volume data/ + +# Python +__pycache__/ +*.py[cod] +*$py.class +*.so +.Python +.venv/ +venv/ +ENV/ + +# IDE +.idea/ +.vscode/ +*.swp +*.swo + +# Environment +.env +.env.local + +# Testing +.pytest_cache/ +.coverage +htmlcov/ + +# Distribution +dist/ +build/ +*.egg-info/