Metadata-Version: 2.4
Name: demo-pack1
Version: 0.0.2
Summary: A demo Python package
Author-email: User <user@example.com>
License: MIT
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# Demo Pack 1

This is a demo package created to demonstrate a simple Python package structure.

## Installation

```bash
pip install demo-pack1
```

## Usage

```python
from demo_pack1 import example

example.hello_world()
```
