# PyPI credentials — never commit
.pypirc

# Build artifacts
dist/
build/
*.egg-info/

# Python cache
__pycache__/
*.pyc
*.pyo
*.pyd

# Test cache
.pytest_cache/
.coverage
htmlcov/

# Virtual envs
.venv/
venv/
env/

# Baselines generated during tests
.genassert_baselines/

# mypy / ruff caches
.mypy_cache/
.ruff_cache/
