Metadata-Version: 2.4
Name: minimal-pypi-project
Version: 0.1.1
Summary: A bare minimum Python package example.
Author-email: Your Name <you@example.com>
License-Expression: MIT
Keywords: example,pypi,package
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# minimal-pypi-project

A bare minimum Python package example.

## Install

```bash
pip install minimal-pypi-project
```

## Use

```python
from minimal_pypi_project import hello

print(hello())
```
hi
