# --- ScorpioWatch runtime state (per PROJECT_STRUCTURE.md §3) ---
.swatch/

# --- Byte-compiled / optimized / DLL files ---
__pycache__/
*.py[cod]
*$py.class
*.so

# --- Distribution / packaging ---
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# --- Virtual environments ---
# An in-repo venv under a non-standard name must be ignored or deleted, never committed:
# hatchling's sdist sweeps every non-ignored path, and a venv's absolute symlinks make the
# resulting tarball unpackable (a stray `activate/` — from a mistyped `source .venv/bin/activate`
# — broke `uv build` outright until it was removed).
.venv/
venv/
env/
ENV/
activate/
.env
.env.*

# --- Installer logs ---
pip-log.txt
pip-delete-this-directory.txt

# --- Testing / coverage / type-check caches ---
.tox/
.nox/
.coverage
.coverage.*
coverage.xml
*.cover
.cache
.pytest_cache/
.hypothesis/
.mypy_cache/
.dmypy.json
dmypy.json
.ruff_cache/
.import_linter_cache/
htmlcov/

# --- Local agent / tool config (never published; keeps it out of the sdist too) ---
.claude/

# --- IDE / editor ---
.idea/
.vscode/
*.swp
*.swo
*~

# --- OS cruft ---
.DS_Store
Thumbs.db
