Metadata-Version: 2.4
Name: demo-pack1
Version: 0.0.1
Summary: A demo Python package
Author-email: User <user@example.com>
Project-URL: Homepage, https://github.com/example/demo-pack1
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
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()
```
