Metadata-Version: 2.4
Name: helloprinter
Version: 0.1.0
Summary: Prints hello from a username
License: MIT
Keywords: greeting,hello
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.10
Description-Content-Type: text/markdown

# helloprinter

A tiny Python package that prints `hello from <username>`.

## Install

```bash
pip install helloprinter
```

## Use as a library

```python
from helloprinter import hello

hello("alice")        # hello from alice
hello()               # hello from <your system username>
```

## Use from the terminal

```bash
helloprinter alice    # hello from alice
helloprinter          # hello from <your system username>
```
