# Prevents unwanted files from being committed to version control. # Python bytecode __pycache__/ *.pyc *.pyo *.pyd # Virtual environments .venv/ venv/ .venvs/ # Build artefacts dist/ build/ *.egg-info/ src/*.egg-info/ pip-wheel-metadata/ # Test / lint caches .pytest_cache/ .ruff_cache/ .mypy_cache/ .coverage .coverage.* htmlcov/ .tox/ # Nix result .nix/ .nix-dev-installed # Editor files .vscode/ .idea/ *.swp # OS noise .DS_Store Thumbs.db # Logs *.log