Metadata-Version: 2.4
Name: my_hw
Version: 0.0.0
Summary: A simple example CLI package
Author-email: Carlod Azofeifa <carlos.azofeifa@github.com>
License: MIT
Requires-Python: >=3.10
Provides-Extra: development
Requires-Dist: pre-commit; extra == 'development'
Requires-Dist: pytest; extra == 'development'
Description-Content-Type: text/markdown

# Lab_Python-Lib

Steps for Building 

### Install Dependencies

```
pip3 install -r requirements.txt
```

### Build 

```
hatch build -t sdist
hatch build -t wheel
```

### Deploy Local

```
pip3 install dist/my_hw-0.0.1-py3-none-any.whl --force-reinstall
```

#### Test

Get Package Info: 
```
pip3 show my-hw
```

Execute: 
```
hello-world
```

> ¡Hello, world from a python package!
