Metadata-Version: 2.1
Name: helloworld-jammer
Version: 0.0.2
Summary: Returns 'Hello, World!'
Home-page: https://github.com/jammer42/helloworld-package
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: MIT License
Description-Content-Type: text/markdown
Provides-Extra: dev
Requires-Dist: pytest ; extra == 'dev'

# Hello World

Simple package, returns "Hello, World!".

## Installation

Code in order to install the package.

```bash
pip install helloworld
```

## Usage

Example code in order to use the package.

```python
from helloworld import helloworld

# generate "Hello, World!"
helloworld.helloworld()
```


