Metadata-Version: 2.1
Name: gpravada-helloworld
Version: 0.0.1
Summary: Say Hello
Home-page: https://github.com/gpravada/gpravada-helloworld
Author: Gopi Ravada
Author-email: gp.ravada@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Description-Content-Type: text/markdown
Requires-Dist: blessings (~=1.7)
Provides-Extra: dev
Requires-Dist: pytest (>=3.7) ; extra == 'dev'

# Hello World

This is an example project demonstrating how to publish a python modile to pypi

## installation

Run the following to install:

```python
pip install helloworld
```

## Usage

```python
from helloworld import say_hello

# Generate "Hello, World!"
say_hello()

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

```
# Developing Hello World
To install helloworld, along with the tools you need to develop and run tests, run the following in your virtualenv:
```bash
$ pip install -e .[dev]
```


