Metadata-Version: 2.4
Name: hello-khirawat
Version: 0.1.0
Summary: A simple sample package to test PyPI publishing
Project-URL: Homepage, https://github.com/khirawat/hello-khirawat
Author: khirawat
License: MIT
License-File: LICENSE
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-khirawat

A simple sample Python package to test PyPI publishing.

## Installation

```bash
pip install hello-khirawat
```

## Usage

### As a library

```python
from hello_khirawat import greet

print(greet("PyPI"))
```

### As a CLI tool

```bash
hello-khirawat Alice
```
