# VCS
.git/
.gitignore

# Python cache and build artifacts
__pycache__/
*.py[cod]
*.pyo
*.pyd
.pytest_cache/
.ruff_cache/
.mypy_cache/

# Virtual environments
.venv/
venv/

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

# Local environment and logs
.env
.env.*
*.log

# Test and coverage outputs
coverage/
htmlcov/

# IDE/OS artifacts
.vscode/
.idea/
.DS_Store
