Metadata-Version: 2.1
Name: abc-test-code
Version: 0.1.0
Summary: A simple calculator package for arithmetic operations.
Home-page: https://github.com/akash-verma998/calculator
Author: nicecode
Author-email: akash.verma1076@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

# Calculator Package

A simple Python calculator package for basic arithmetic operations.

## Features
- Addition
- Subtraction
- Multiplication
- Division

## Installation
```bash
pip install calculator

from calculator import add, subtract, multiply, divide

print(add(2, 3))       # Output: 5
print(subtract(5, 3))  # Output: 2
print(multiply(2, 3))  # Output: 6
print(divide(6, 3))    # Output: 2.0

---

### **5. `LICENSE`**
Add an open-source license (e.g., MIT License).

```plaintext
MIT License
...

