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

# Virtual environments
.venv/
venv/
env/

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

# Local environment and secrets
.env
.env.*
!.env.example

# dbt generated artifacts
target/
dbt_packages/
logs/

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