# VCS .git/ .gitignore # Python cache / bytecode __pycache__/ *.py[cod] *$py.class # Build / packaging artifacts build/ dist/ *.egg-info/ .eggs/ pip-wheel-metadata/ # Test and coverage artifacts .pytest_cache/ .tox/ .nox/ .coverage .coverage.* htmlcov/ # Type checker / linter caches .mypy_cache/ .pytype/ .pyre/ .ruff_cache/ # Virtual environments .venv/ venv/ env/ ENV/ # Local env/config files .env .env.* # IDE and notebook artifacts .vscode/ .idea/ .ipynb_checkpoints/ # Logs and temp files *.log *.tmp