Metadata-Version: 2.1
Name: hellouser
Version: 0.0.2
Summary: Say hello!
Home-page: https://github.com/rohitaradhya
Author: Nagalatha
Author-email: nagalatha@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

# Hello user

This is a simple example project demonstrating how to publish a python module to PyPI.

##Installation

Run the follwing to install:

```python
pip install hellouser
```

## Usage

```python
from hellouser import say_hello

# Generate "Hello, User!"
say_hello()

# Generate "Hello, Everybody!"
say_hello("Everybody")
```




