Metadata-Version: 2.1
Name: helloworld-notha99y
Version: 0.0.1
Summary: Say Hello!
Home-page: https://github.com/notha99y/personalKB/tree/master/python_stuffs/publishing_python_packages/hello_world
Author: Tan Ren Jie
Author-email: renjie.tan91@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 :: GNU General Public License v2 or later (GPLv2+)
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: blessings (~=1.7)
Provides-Extra: dev
Requires-Dist: pytest (>=3.7) ; extra == 'dev'
Requires-Dist: check-manifest ; extra == 'dev'
Requires-Dist: twine ; extra == 'dev'

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

## Installation
Run the following to install

```bash
pip install helloworld-notha99y
```
## Usage
```python
from helloworld-notha99y import say_hello

# Generate "Hello, World!"
say_hello()

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


