Metadata-Version: 2.1
Name: helloNoushi
Version: 0.0.1
Summary: say hello
Home-page: https://github.com/MSBeni/LearnPythonPackage
Author: MSBeni
Author-email: andrei.sokurov.bitco@gmail.com
License: UNKNOWN
Keywords: calculator
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: End Users/Desktop
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Communications :: Email
Classifier: Topic :: Office/Business
Classifier: Topic :: Software Development :: Bug Tracking
Description-Content-Type: text/markdown
Provides-Extra: dev
Requires-Dist: pytest (>=3.7) ; extra == 'dev'

# Hello World
A SIMPLE FILE TO DESCRIBE THE PROJECT PACKAGING IN PYTHON - and a program t simply say hello

## Installation 
Run the following to install:
```python
pip install helloNoushi
```

## Usage
```python
from helloNoushi import sayhello
``` 
# Generate "Hello Lovely World ...!!!"
sayhello()

# Generate "Hello Lovely guys ...!!!"
sayhello('guys')

# Developing Hello World

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

