# Rust
target/
**/*.rs.bk
*.pdb

# Python
__pycache__/
*.py[cod]
*$py.class
*.so
*.egg
*.egg-info/
dist/
build/
.eggs/
*.whl
*.pyc
.pytest_cache/
.coverage
htmlcov/
.tox/
venv/
env/
ENV/
.venv

# Maturin
maturin.egg-info/
wheels/
*.whl

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

# Testing
.pytest_cache/
.coverage
htmlcov/
*.cover
.hypothesis/

# Documentation
docs/_build/
docs/.doctrees/

# Environment
.env
.env.local
.env.*.local

# OS
.DS_Store
Thumbs.db
*.swp
*.swo

# Build artifacts
*.o
*.a
*.dylib
*.dll
*.exe

# Logs
*.log

# Temporary files
*.tmp
*.temp
.cache/

