Metadata-Version: 2.1
Name: hello-package-charuvil
Version: 0.0.1
Summary: say hello to package!
Home-page: UNKNOWN
Author: Raja Charuvil
Author-email: raja.asokan@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'

# Hello Package

This is an example project demonstrating how to publish a Python package to PyPI.

## Installation

Run the followaing to install
```python
pip install hellopackage
```

## Usage

```python
from hello_package import hello_package

# Generate "Hello Package!"
say_hello()

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

# Developing Hello Package

To install hellopackage, along waith tools you need to develop and run tests, run the following in your virtualenv:
```bash
$ pip install -e .[dev]
```


