Metadata-Version: 2.1
Name: kpol
Version: 0.3.0
Summary: A simple arithmetic operations package
Home-page: https://github.com/yourusername/kpol
Author: Your Name
Author-email: your.email@example.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# kpol

kpol is a Python package that provides simple arithmetic operations such as addition, multiplication, subtraction, and division.

## Installation

You can install the package via pip:

```bash
pip install kpol
```

## Usage

```python
from kpol.math_module import Arithmetic

arith = Arithmetic()
print(arith.add(3, 5))  # Output: 8
```
