Metadata-Version: 2.1
Name: helloworld-nhenseler
Version: 0.0.1
Summary: Say helllo!
Home-page: UNKNOWN
Author: Norbert Henseler
Author-email: nhenseler@web.de
License: UNKNOWN
Platform: UNKNOWN
Description-Content-Type: text/markdown
License-File: LICENSE

# Hello World
This is an example of how to publish a python module to PyPI

## Installation
To install type:
```python
$ pip install helloworld-nhenseler
```

## Usage
```python
from helloworld-nhenseler import say_hello

# Generate "Hello, World!"
say_hello()

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

