# Virtual environment — never copy host venv into the build context
.venv/

# Git history is not needed inside the image
.git/

# Python cache and compiled bytecode
__pycache__/
*.pyc
*.pyo

# Test runner state
.pytest_cache/
.coverage
htmlcov/

# Tests themselves — not needed in the runtime image
lore/tests/

# Editor / IDE artefacts
.idea/
.vscode/
*.swp
*.swo

# OS noise
.DS_Store

# Egg-info generated by local pip install — not needed in the image
lore.egg-info/
