# ----------------------------------------------------------------
# --- Python Virtual Environments ---
# ----------------------------------------------------------------
.venv/
venv/
ENV/
env/
lib/
lib64/
include/
bin/
share/
*/activate

# ----------------------------------------------------------------
# --- Python Caches & Artifacts ---
# ----------------------------------------------------------------
__pycache__/
*.py[cod]
*$py.class
*.so

# ----------------------------------------------------------------
# --- Python Distribution & Build Artifacts (Key for Packages) ---
# ----------------------------------------------------------------
build/
dist/
sdist/
wheels/
*.egg-info/
*.egg
pip-wheel-metadata/
parts/
var/
*.manifest
*.spec

# ----------------------------------------------------------------
# --- Test, Coverage, & Linting ---
# ----------------------------------------------------------------
.pytest_cache/
.tox/
.nox/
.coverage
.coverage.*
htmlcov/
nosetests.xml
coverage.xml
.mypy_cache/
.dmypy.json
dmypy.json

# ----------------------------------------------------------------
# --- IDE / Editor ---
# ----------------------------------------------------------------
.vscode/
.idea/
*.swp
*.swo
*~
.project
.pydevproject
.settings/

# ----------------------------------------------------------------
# --- OS Generated Files ---
# ----------------------------------------------------------------
.DS_Store
Thumbs.db
ehthumbs.db

# ----------------------------------------------------------------
# --- Secrets / Local Config (DO NOT COMMIT) ---
# ----------------------------------------------------------------
.env
*.env
.env.*
*.local
secrets.yml
*.pem
*.key
*.keyfile