Metadata-Version: 2.4
Name: bader-nasser-calculator
Version: 0.1.0
Summary: A simple calculator package for basic math operations by Bader Nasser
Home-page: https://github.com/bader-nasser/simple-calculator
Author: بدر ناصر
Author-email: bader.nasser@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
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-python
Dynamic: summary

# bader-nasser-calculator

حزمة بايثون بسيطة تحتوي على عمليات جمع، طرح، ضرب، وقسمة.

## التثبيت

```bash
pip install bader-nasser-calculator
```

## الاستخدام

```python
from bader_nasser_calculator import calculator

print(calculator.add(5, 3))     # الناتج: 8
print(calculator.subtract(10, 4)) # الناتج: 6
print(calculator.multiply(2, 6))  # الناتج: 12
print(calculator.divide(10, 2))   # الناتج: 5.0
```

## الترخيص

هذا المشروع مرخص تحت رخصة MIT.

