Metadata-Version: 2.1
Name: greetuvm
Version: 0.0.1
Summary: Say hello to someone (or thing)
Home-page: https://gitlab.com/monden/greetuvm
Author: Monde
Author-email: xytuple@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Description-Content-Type: text/markdown
Provides-Extra: dev
Requires-Dist: pytest (>=3.7) ; extra == 'dev'
Requires-Dist: check-manifest (>=0.42) ; extra == 'dev'
Requires-Dist: twine (>=3.2.0) ; extra == 'dev'

# greetuvm
> Greet You Very Much

An example project to help say hello to people or things.

This is actually a code-along for the talk [Publishing (Perfect) Python Packages on PyPi](https://youtu.be/GIF3LaRqgXo).

## Installation
Run the following to install:

```bash
$ pip install greetuvm
```

## Usage
```python
from hello import say_hello

# Say the generic "Hello"
say_hello()

# Say "Hello, Abel"
say_hello('Abel')
```

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


