# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
dist/
*.egg-info/
.installed.cfg
*.egg

# Virtual Environment
.venv/
venv/
ENV/

# Environment variables
.env
.env.*
!.env.*.template

# IDE
.vscode/
.idea/
.cursor/
*.swp
*.swo
*~

# OS
.DS_Store
Thumbs.db

# Logs
logs/
*.log

# MLflow
mlruns/

# Data files (keep templates, ignore actual data)
data/*.csv
data/*.parquet
data/*.pkl
data/*.json

# Artifacts
artifacts/

# Test
.pytest_cache/
.coverage
.coverage.*
htmlcov/
coverage.xml

# Docker
*.pid
docker-compose.override.yml

# Temporary
*.tmp
*.temp
tmp/
temp/
