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

# Virtual environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/

# IDEs
.vscode/
.idea/
*.swp
*.swo
*~

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

# Git
.git/
.gitignore
.gitattributes

# Documentation
*.md
docs/

# CI/CD
.github/

# Rust build artifacts (we copy only the compiled libs)
rust/target/debug/
rust/target/release/*.d
rust/target/release/*.rlib
rust/Cargo.lock

# Data and logs
*.db
*.db-shm
*.db-wal
logs/
data/

# OS
.DS_Store
Thumbs.db

# Development
examples/
tests/test_*.json
benchmarks/
