# Python
__pycache__/
*.py[cod]
.pytest_cache/
.mypy_cache/
.ruff_cache/

# Virtual environment
.venv/
venv/

# Environment secrets
.env
.env.local
.env.*.local

# IDE
.idea/
.vscode/

# macOS
.DS_Store

# Logs
*.log
logs/

# Coverage
.coverage
htmlcov/
coverage.xml

# Build
build/
dist/
*.egg-info/