# =========================
# Python bytecode / cache
# =========================
__pycache__/
*.py[cod]
*$py.class

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

# =========================
# Build / packaging
# =========================
build/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
pip-wheel-metadata/

# =========================
# Installer logs
# =========================
pip-log.txt
pip-delete-this-directory.txt

# =========================
# Unit test / coverage / pytest
# =========================
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache/
pytestdebug.log
.pytest_cache/
coverage.xml
*.cover
*.py,cover
.hypothesis/

# =========================
# Type checker / linter / static analysis
# =========================
.mypy_cache/
.dmypy.json
dmypy.json
.pyre/
.pytype/
.ruff_cache/

# =========================
# Jupyter Notebook
# =========================
.ipynb_checkpoints/

# =========================
# Logs / runtime files
# =========================
*.log
logs/
*.out
*.err
*.pid
*.pid.lock
*.seed
*.stackdump

# =========================
# Environment / local config
# =========================
.env
.env.*
*.env
.python-version

# =========================
# SQLite / local databases
# =========================
*.sqlite3
*.db

# =========================
# IDE / editor
# =========================
.vscode/
.idea/
*.iml

# =========================
# OS files
# =========================
.DS_Store
Thumbs.db

# =========================
# Documentation build
# =========================
docs/_build/

# =========================
# Temporary files
# =========================
tmp/
temp/
*.tmp
*.bak
*.swp
*.swo

# =========================
# PyInstaller
# =========================
*.manifest
*.spec

# =========================
# C extensions
# =========================
*.so

# =========================
# Distribution / archives
# =========================
*.7z
*.gz
*.zip
*.tar
*.tgz
*.bz2
*.rar
