Metadata-Version: 2.1
Name: simple_pkg_by_zxz
Version: 0.1.0
Summary: A simple greeting package
Home-page: https://github.com/yourusername/simple_pkg
Author: Your Name
Author-email: your.email@example.com
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE

# simple_pkg

A simple Python package that greets you.

## Installation

You can install this package via pip:

pip install simple_pkg


## Usage

```python
from simple_pkg import greet

print(greet('World'))
