Metadata-Version: 2.1
Name: htpymodule
Version: 0.3
Summary: A very simple example module for basic arithmetic operations.
Home-page: https://pypi.org/project/htpymodule/
Author: Jason Dsouza, ChatGPT, and Hongtao Hao
Author-email: hhao9@wisc.edu
Description-Content-Type: text/markdown

# A Sample Simple Python Module

This package provides a very simple example module with basic arithmetic operations.

## Installation

You can install the package locally:

```bash
git clone https://github.com/hongtaoh/htpymodule
pip install .
```

or through PyPI:

```bash
pip install htpymodule
```

## Usage

```py
from htpymodule import add, subtract, multiply, divide

print(add(1, 2))         # Output: 3
print(subtract(5, 3))    # Output: 2
print(multiply(4, 2))    # Output: 8
print(divide(10, 2))     # Output: 5.0
```
