# Python cache and bytecode
__pycache__/
*.py[cod]
*$py.class
*.pyo

# Virtual environments
.venv/
venv/
env/
.python-version

# Test and type-check caches
.pytest_cache/
.mypy_cache/
.ruff_cache/
.hypothesis/
.tox/
.nox/
.pyre/

# Build artifacts
build/
dist/
*.egg-info/
*.egg
pip-wheel-metadata/

# Coverage reports
.coverage
.coverage.*
htmlcov/
coverage.xml

# IDE/editor
.vscode/
.idea/
