Metadata-Version: 2.1
Name: tusmehta-helloworld
Version: 0.0.1
Summary: Say Hello!
Home-page: https://github.com/TusharMehtani/tusmehta-helloworld
Author: Tushar Mehtani
Author-email: tushar.mehtani@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 
```


