# -------------------------
# Python
__pycache__/
*.py[cod]
*.pyo
*.pyd
*.so
*.dylib
.build/
build/
dist/
.eggs/
*.egg-info/
pip-wheel-metadata/

# Virtual envs
.venv/
venv/
env/
.conda/
.pyenv/
.python-version

# Tool caches
.mypy_cache/
.ruff_cache/
.pytest_cache/
.cache/
.nox/
.tox/

# Coverage
.coverage
.coverage.*
coverage.xml
htmlcov/
coverage/

# Editors / OS
.idea/
.vscode/
*.code-workspace
.DS_Store
Thumbs.db
.ipynb_checkpoints/

# Env / secrets
statline/.keys.json
.env
.env.*
.envrc
.direnv/
# Repo-level secrets (tracked dir, ignore contents)
secrets/**
!secrets/.gitkeep
# Package-level secrets (tracked dir, ignore contents)
statline/secrets/**
!statline/secrets/.gitkeep
# Gifted/issued keys & local activation file
**/secrets/REGKEY
**/secrets/DEVKEY
**/secrets/keys/
*.reg

# Local data/state
max_stats.json
max_stats.local.json
data/*.sqlite
data/*.sqlite*
data/*.db
data/*.db*
*.log

# SLAPI storage (local sqlite files)
statline/slapi/storage/*.sqlite
statline/slapi/storage/*.sqlite*
statline/slapi/storage/*.db
statline/slapi/storage/*.db*

# Certificates / private keys (just in case)
*.pem
*.crt
*.key
*.p12

# Hatch / packaging
*.egg
MANIFEST
uv.lock
