Metadata-Version: 2.1
Name: helloworld-ashcoder
Version: 0.0.1
Summary: Say hello!
Home-page: https://github.com/card4ash/pythonpackaging
Author: Ashraful Alam
Author-email: card4ash@live.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Topic :: Utilities
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
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.

## Installtion
Run the following to install:

```python
pip install helloworld
```

## Usage
```python
from helloworld import say_hello
# Generate "Hello, World!"
say_hello()
# Generate "Hello, Everbody!"
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]
```

