# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
env/
venv/
.venv/
ENV/
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# Rust
target/
Cargo.lock
**/*.rs.bk
*.pdb
rustc-ice-*.txt
**/fuzz/corpus/
**/fuzz/artifacts/

# PyO3 / Rust-Python FFI
# .cargo/ - We DO commit .cargo/config.toml for team tooling
*.whl

# Testing
.pytest_cache/
.coverage
.coverage.*
htmlcov/
.tox/
.hypothesis/
*.cover
.cache
coverage/
tarpaulin-report.html
cobertura.xml
lcov.info

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

# IDEs and Editors
# .vscode/ - We DO commit VSCode settings for team consistency
.idea/
*.swp
*.swo
*~
.project
.classpath
.settings/
*.sublime-project
*.sublime-workspace

# OS
.DS_Store
Thumbs.db
*.bak
*.tmp

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

# Documentation build artifacts
docs/_build/
docs/.buildinfo
site/
.doctrees/

# Development phase documentation (not shipped in releases)
.phases/

# Database
*.db
*.sqlite
*.sqlite3

# Logs
*.log
logs/

# Compiled schemas
*.compiled.json
compiled_schemas/

# Local development
.local/
tmp/
temp/

# CI/CD
.gitlab-ci-local/

# Analysis work-in-progress
TODO_*/
