# Virtual environments
.venv/
venv/
env/

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

# Tool caches
.mypy_cache/
.pytest_cache/
.ruff_cache/

# Build artifacts
build/
dist/

# IDE
.vscode/
.idea/
*.swp

# Downloaded test corpora (fetched by tools/fetch_corpora.py), keep the README
tests/corpora/*
!tests/corpora/README.md

# Coverage artifacts
.coverage
coverage.xml
htmlcov/
