# Copyright 2025 BBDevs
# Licensed under the Apache License, Version 2.0

# ============================================
# Python
# ============================================
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# ============================================
# Testing
# ============================================
.pytest_cache/
.coverage
.coverage.*
htmlcov/
.tox/
.nox/
coverage.xml
*.cover
*.log
.hypothesis/

# ============================================
# Type Checking
# ============================================
.mypy_cache/
.dmypy.json
dmypy.json
.pytype/
.pyre/

# ============================================
# uv Package Manager
# ============================================
.venv/
venv/
ENV/
env/
uv.lock

# ============================================
# IDEs
# ============================================
.vscode/
.idea/
*.swp
*.swo
*~
.DS_Store

# ============================================
# Logs
# ============================================
logs/
*.log
*.log.*

# ============================================
# Temporary Files
# ============================================
tmp/
temp/
*.tmp

# ============================================
# Build Artifacts
# ============================================
*.whl
*.tar.gz

