Metadata-Version: 2.1
Name: arithmetic-package
Version: 0.1
Summary: A simple package for basic arithmetic operations using functions
Home-page: https://github.com/yourusername/arithmetic-package
Author: Your Name
Author-email: your.email@example.com
License: MIT
Platform: UNKNOWN
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

# Arithmetic Package
 A simple python package for basic arithmetic operations.

 ## installation

 ```sh
 pip install arithmetic-package

```
## Usage

```python
from arithmetic import add, subtract, multiply

print(add(1,2)) # prints 3
print(subtract(4,6)) # prints 10
print(multiply(2,3)) # prints 6




