# Python bytecode + cache
__pycache__/
*.py[cod]
*$py.class
*.so
*.pyd

# Distribution / packaging
dist/
build/
*.egg
*.egg-info/
MANIFEST
pip-log.txt
pip-delete-this-directory.txt

# Virtual environments (covers common naming conventions)
.venv/
venv/
env/
ENV/

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

# Type checkers + linters
.mypy_cache/
.ruff_cache/
.ty_cache/
.pyre/
.pytype/

# Jupyter
.ipynb_checkpoints/

# Secrets / env
.env
.env.*
!.env.example
.envrc

# Editors
.vscode/
.idea/
*.swp
*.swo
*~
.*.swp

# OS
.DS_Store
Thumbs.db
