Metadata-Version: 2.1
Name: abhishek-helloworld
Version: 0.0.2
Summary: Say Hello!
Home-page: https://github.com/meabhishekkumar/package_test_hello_world
Author: Abhishek Kumar
Author-email: abhishek.kumar6@publicissapient.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
Requires-Dist: blessings (~=1.7)
Provides-Extra: dev
Requires-Dist: pytest (>=3.7) ; extra == 'dev'

# Hello World

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

## Installation

Run the following to install:

```python
pip install helloworld
```

## Usage

```python
from helloworld import say_hello

# Generate "Hello, World!"
say_hello()

# Generate "Hello, Everybody!"
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 virutalenv:

```bash
$ pip install -e .[dev]
$ pip install -e .'[dev]' # for ZSH 
$ pip install -e ."[dev]" # for Windows 
```



