Metadata-Version: 2.1
Name: helloworld-examplePackage
Version: 0.0.1
Summary: Say hello!
Home-page: https://github.com/drewamorbordelon/helloworld-PyPI
Author: Drew Bordelon
Author-email: bordelon.drew@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Provides-Extra: dev
Requires-Dist: pytest (>=3.8) ; extra == 'dev'
Requires-Dist: twine ; extra == 'dev'

# Hello World
This is an example/format project demonstrating how to publish a python module to PyPI.

```python
pip install helloworld
```

# Developing Hello World
To install helloworld, along with the tools you need to develop and run tests, run the following in you virtualenv:

```bash
$ pip install -e .[dev]
```

## Usage
```python
from helloworld import say_hello

# Generate "Hello, World!"
say_hello()

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


