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

# --- Build / packaging artifacts ----------------------------------------
build/
dist/
*.egg-info/
*.egg
wheels/
*.whl
*.tar.gz
pip-wheel-metadata/

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

# --- Test / coverage / type-checking caches -------------------------------
.pytest_cache/
.mypy_cache/
.ruff_cache/
.coverage
.coverage.*
coverage.xml
htmlcov/
.tox/
.cache/

# --- Environment variables / secrets --------------------------------------
# Nunca versionar credenciales reales de Wompi (client_id/client_secret).
.env
.env.*
!.env.example

# --- Editores / IDEs -------------------------------------------------------
.vscode/
.idea/
*.swp
*.swo

# --- Sistema operativo -----------------------------------------------------
.DS_Store
Thumbs.db

# --- Jupyter (por si se usa para probar la librería a mano) ---------------
.ipynb_checkpoints/
