Metadata-Version: 2.1
Name: mmhelloworld
Version: 0.0.3
Summary: Say Hello!
Home-page: https://github.com/manasm11/mmhelloworld.git
Author: Manas Mishra
Author-email: manas.m22@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 :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: blessings (~=1.7)
Provides-Extra: admin
Requires-Dist: black ; extra == 'admin'
Requires-Dist: pytest (>=3.7) ; extra == 'admin'
Requires-Dist: twine ; extra == 'admin'
Requires-Dist: wheel ; extra == 'admin'
Provides-Extra: dev
Requires-Dist: black ; extra == 'dev'
Requires-Dist: pytest (>=3.7) ; extra == 'dev'
Requires-Dist: wheel ; extra == 'dev'

# mmhelloworld
Trying uploading to pypi a hello world package.

## Installation
Run the following to install:

```python
pip install mmhelloworld
```

## Usage
```python
from mmhelloworld import say_hello

# Prefer to paste logs from ipython.

# Prints "Hello! World"
say_hello()

# Prints "Hello! Everybody"
say_hello('Everybody')
```

# Developing Hello World
To install hello world along with tools you need to develop and run tests, run the following in your virtualenv.
```bash
$ pip install -e .[dev]
```



