From 4b9359ebe20fdbb0232c42a624fc2b8becbbfeb3 Mon Sep 17 00:00:00 2001 From: Peter Knauer Date: Sat, 6 Dec 2025 09:24:38 -0500 Subject: [PATCH] gitignore --- .gitignore | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..fe74612 --- /dev/null +++ b/.gitignore @@ -0,0 +1,53 @@ +# --- Python bytecode / cache --- +__pycache__/ +*.py[cod] +*$py.class + +# --- Virtual environments --- +.venv/ +venv/ +env/ +ENV/ +.env/ +.python-venv/ + +# --- Packaging / build artifacts --- +build/ +dist/ +*.egg-info/ +.eggs/ +pip-wheel-metadata/ +*.egg + +# --- Test / coverage / tooling --- +.pytest_cache/ +.coverage +.coverage.* +htmlcov/ +.tox/ +.nox/ +.mypy_cache/ +.ruff_cache/ +.pyre/ +.pytype/ + +# --- Logs / runtime data --- +*.log +*.tmp + +# --- IDE / Editor --- +# JetBrains / PyCharm +.idea/ + +# VS Code +.vscode/ + +# Editors / OS clutter +*~ +*.swp +*.swo +.DS_Store +Thumbs.db + +# --- Misc cache --- +.cache/