# Python bytecode and caches
__pycache__/
*.py[cod]
*$py.class
.cache/
.pytest_cache/
.mypy_cache/
.ruff_cache/
.pytype/
.ipynb_checkpoints/

# Virtual environments
.venv/
venv/
env/
.Python

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

# Coverage / test outputs
.coverage
.coverage.*
coverage.xml
htmlcov/
.nox/
.tox/

# Editor / OS files
.DS_Store
.idea/
.vscode/

# Environment files
.env
.env.*

# macOS specific
._*


