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

# Virtual environments
.venv/
venv/

# Environment files
.env
.env.*

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

# Test and tool caches
.pytest_cache/
.mypy_cache/
.ruff_cache/
.cache/
.ipynb_checkpoints/
.coverage*
coverage.xml
htmlcov/
.tox/

# IDE/editor settings
.vscode/
.idea/
*.iml

# OS files
.DS_Store
Thumbs.db

# Logs
*.log

# Lock files (optional; remove if you want to track)
uv.lock


