# Python bytecode and caches
__pycache__/
*.py[cod]
*$py.class
.pytest_cache/
.mypy_cache/
.ruff_cache/
.pyre/

# Virtual environments
.venv/
venv/
env/
ENV/

# Build and packaging output
build/
dist/
*.egg-info/
.eggs/

# Coverage and test output
.coverage
.coverage.*
htmlcov/
coverage.xml
.tox/
.nox/

# Local environment files
.env
.env.*
!.env.example

# Editors and IDEs
.idea/
.vscode/
*.swp
*.swo

# OS files
.DS_Store
Thumbs.db
