Metadata-Version: 2.1
Name: helloworld-mj
Version: 0.0.1
Summary: Say Hello!
Home-page: UNKNOWN
License: UNKNOWN
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Provides-Extra: dev
Requires-Dist: pytest (>=3.7) ; extra == 'dev'

# Hello world

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

``` python
from hello import say_hello
#generate > hello, world!
say_hello()


#generate> hello, cool!
say_hello("cool")

```

# Developing Hello World

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


