# Environment and secrets
.env
.env.*
!.env.example

# Generated output
output/

# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
.pytest_cache/
.mypy_cache/
.ruff_cache/
.coverage
htmlcov/

# Virtual environments
.venv/
venv/
env/

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

# IDE and OS
.vscode/
.idea/
*.iml
.DS_Store
Thumbs.db

# Logs and local databases
*.log
*.sqlite3
