# Python
__pycache__/
*.py[cod]
*$py.class
*.so
*.dll
*.dylib
*.pyd

# Distribution / packaging
build/
dist/
*.egg-info/
*.egg
.eggs/
MANIFEST

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

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

# Rust / Cargo
# Note: Cargo.lock is committed for reproducible builds (see MANIFEST.in)
target/
**/*.rs.bk

# Maturin build artifacts
*.whl
.maturin/

# Python build artifacts (Windows)
*.pdb
*.exp
*.lib

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

# OS specific
.DS_Store
Thumbs.db

# Type checking
.mypy_cache/
.dmypy.json
dmypy.json
.pyre/

# Environment variables
.env
.env.local
