# --- Secrets & local config ---
.env
*.env
.env.*
!.env.example

# --- Python build artifacts ---
__pycache__/
*.py[cod]
*.pyo
*.pyd
dist/
build/
*.egg-info/
*.egg
.eggs/

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

# --- Testing & coverage ---
.pytest_cache/
.coverage
htmlcov/
.tox/
nosetests.xml
coverage.xml
*.cover

# --- Type checkers & linters ---
.mypy_cache/
.ruff_cache/

# --- IDE & OS ---
.DS_Store
Thumbs.db
.idea/
.vscode/
*.swp
*.swo

# --- Jupyter ---
.ipynb_checkpoints/

# --- Docker ---
.dockerignore
