Metadata-Version: 2.4
Name: hello_richa_utils
Version: 0.1.1
Summary: A simple package to say hello
Project-URL: Homepage, https://github.com/Engage-Infra-ITH/helloutils
Author-email: RS <richa.sharma@ttec.com>
License-Expression: MIT
Description-Content-Type: text/markdown

# helloutils

A simple utility package with a `say_hello()` function.

Create `tests/test_hello.py`:

```python
from helloutils import say_hello

def test_say_hello():
   assert say_hello("World") == "Hello, World!"
```

