Metadata-Version: 2.5
Name: minimal-pypi-project
Version: 0.1.0
Summary: A bare minimum Python package example.
Project-URL: Homepage, https://github.com/your-username/minimal-pypi-project
Project-URL: Issues, https://github.com/your-username/minimal-pypi-project/issues
Author-email: Your Name <you@example.com>
License-Expression: MIT
License-File: LICENSE
Keywords: example,package,pypi
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# 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())
```
