Metadata-Version: 2.4
Name: hello-fze
Version: 0.6.6
Summary: A tiny hello-world package that bundles sample.zip
Project-URL: Homepage, https://github.com/medzied/hello-fze
Author-email: med zied a <medzied.arbi@gmail.com>
License-Expression: MIT
License-File: LICENSE
Keywords: example,hello
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# hello-fze

A tiny example package that prints a hello-world greeting and bundles `sample.zip`.

## Install

```bash
pip install hello-fze
```

## Usage

```python
from hello_fze import hello, get_sample_zip_path

print(hello())          # Hello, world!
print(hello("Med"))     # Hello, Med!
print(get_sample_zip_path())  # path to the bundled sample.zip
```

Or from the command line:

```bash
hello-fze
```
