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

# ─── Virtual Environment ──────────────────────────────────
codeCTO-env/
.venv/
venv/
ENV/
env/

# ─── IDE ──────────────────────────────────────────────────
.vscode/
.idea/
*.swp
*.swo
*~
.project
.classpath
.settings/

# ─── OS ───────────────────────────────────────────────────
.DS_Store
Thumbs.db
desktop.ini

# ─── Testing & Coverage ──────────────────────────────────
.pytest_cache/
.coverage
.coverage.*
htmlcov/
.tox/
.nox/
.cache/

# ─── Type Checking ────────────────────────────────────────
.mypy_cache/
.pytype/
.pyre/

# ─── Ruff ─────────────────────────────────────────────────
.ruff_cache/

# ─── Environment Variables ────────────────────────────────
.env
.env.local
.env.production

# ─── Build & Distribution ────────────────────────────────
*.tar.gz
*.whl

# ─── Logs ─────────────────────────────────────────────────
*.log
logs/

# ─── Scan Results (generated) ────────────────────────────
.codecto-cache/
.codecto-results/
*.sarif

# ─── Documentation Build ─────────────────────────────────
site/
docs/_build/

# ─── Database (Enterprise) ───────────────────────────────
*.db
*.sqlite3

# ─── uv ──────────────────────────────────────────────────
uv.lock
.codecto/
