Metadata-Version: 2.4
Name: ex1_pack1age1
Version: 0.1.1
Summary: Example pip-installable Python package
Author: Tertiary Ion
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# ex_package

A simple hello package that can be installed using pip.

This project is for learning how to:

- Build a Python package
- Install using pip
- Share projects
- Practice Git and GitHub

## Installation

pip install ex_package

## Usage

```python
from ex_package import Hello, Impute

h = Hello("Hi", 3)
h.show()

i = Impute("Hello", 2)
i.printl()
