From aa5d90bc543096343529af79ca3a7bd92e1ea117 Mon Sep 17 00:00:00 2001 From: Ryan Malloy Date: Wed, 18 Feb 2026 10:25:40 -0700 Subject: [PATCH] Add .gitignore for Python project artifacts --- .gitignore | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..261986c --- /dev/null +++ b/.gitignore @@ -0,0 +1,21 @@ +# Python +__pycache__/ +*.py[cod] +*.egg-info/ +dist/ +build/ + +# Virtual environment +.venv/ + +# Testing +.pytest_cache/ +.coverage +htmlcov/ + +# Editor +*.swp +*.swo +*~ +.idea/ +.vscode/