# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python

# Virtualenvs
.venv/
venv/
env/

# Build / dist
build/
dist/
*.egg-info/
*.egg

# Tooling caches
.pytest_cache/
.mypy_cache/
.ruff_cache/
.coverage
.coverage.*
htmlcov/
coverage.xml

# IDE
.vscode/
.idea/
.claude/
*.swp

# Secrets — never commit publishing tokens / credentials.
# Prefer storing the PyPI token in $HOME (~/.pypirc) or a CI secret store,
# outside the repo entirely. These are a belt-and-suspenders backstop.
.env
.env.*
.pypirc
*.token
secrets.yaml
secrets.yml

# OS
.DS_Store
Thumbs.db
