# Environment — never commit secrets
.env
.env.*
!.env.example

# Python virtual environment
.venv/
venv/
env/
ENV/

.syrin/

# Build artifacts
__pycache__/
*.py[cod]
*$py.class
*.so
dist/
build/
*.egg-info/
.eggs/
*.egg

# Test / coverage
.pytest_cache/
.coverage
.coverage.*
htmlcov/
coverage.xml
*.xml

# Type checking
.mypy_cache/
.pyright/
pyrightconfig.json

# uv lockfile (keep if you want reproducible installs, otherwise ignore)
# uv.lock

# IDE
.vscode/
.idea/
*.swp
*.swo
.DS_Store
