From 2fa5b2835915298ba1d4eb356e79c63fd9257487 Mon Sep 17 00:00:00 2001 From: Lilith Date: Fri, 9 Jan 2026 11:27:10 -0800 Subject: [PATCH] chore: add .gitignore for Python build artifacts --- .gitignore | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..34d387c --- /dev/null +++ b/.gitignore @@ -0,0 +1,33 @@ +# Python build artifacts +dist/ +build/ +*.egg-info/ +__pycache__/ +*.py[cod] +*$py.class + +# Virtual environments +venv/ +.venv/ +env/ +ENV/ + +# IDE +.vscode/ +.idea/ +*.swp +*.swo +*~ + +# Testing +.pytest_cache/ +.coverage +htmlcov/ +*.cover + +# MyPy +.mypy_cache/ +.dmypy.json + +# Ruff +.ruff_cache/