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

# Virtual environments
venv/
env/
.venv

# IDEs
.vscode/
.idea/
*.swp

# Testing
.pytest_cache/
.coverage
htmlcov/
.tox/

# Git
.git/
.gitignore
.gitattributes

# CI/CD
.github/

# Artifacts and data
artifacts/
*.npy
*.npz
*.parquet
*.csv
!examples/*.csv
!examples/*.parquet

# Documentation
docs/
*.md
!README.md

# Misc
.DS_Store
Thumbs.db
*.log

