Metadata-Version: 2.4
Name: shylib
Version: 0.1.0
Summary: Adds a helpful exception to signify a code block is shy.
License-File: LICENSE
Requires-Python: >=2.7
Description-Content-Type: text/markdown

# shylib

Adds a helpful exception to signify a code block is shy.

## Installation

```bash
  pip install shylib
```

## Usage/Examples

```python
from shylib import TooShyError

def iamshy():
    # TooShyError is raised when a code block gets too shy.
    raise TooShyError("The function is too shy to be called.")
```