# === Python ===
__pycache__/
*.py[cod]
*.pyo
*.egg-info/
*.egg

# === Rust (jinwurs) ===
src/jinwurs/target/
src/jinwurs/Cargo.lock

# === Build & Distribution ===
build/
dist/
*.whl
*.tar.gz

# === Virtual Environments ===
venv/
env/
.venv/
.pyenv/

# === Sphinx Documentation ===
docs/_build/
docs/api/
docs/**/*.automodapi

# === Testing & Coverage ===
.pytest_cache/
.mypy_cache/
.ruff_cache/
.coverage
htmlcov/
*.prof

# === Jupyter ===
.ipynb_checkpoints/

# === IDE ===
.vscode/
.idea/

# === macOS ===
.DS_Store
.AppleDouble
.LSOverride
Icon?
._*
*.swp

# === Environment ===
.env

# === Logs ===
*.log

# === Rust (jinwurs) ===
src/jinwurs/target/
src/jinwurs/Cargo.lock

# === AI Coding Agents ===
.codex/
.agents/

# === External Dependencies (large / not in repo) ===
external_sources/
test/
tests/


