Metadata-Version: 2.1
Name: adel_majli_calculator
Version: 0.1.0
Summary: آلة حاسبة بسيطة لإجراء العمليات الحسابية الأساسية.
Home-page: https://github.com/adelmajli/simple-calculator
Author: عادل مجلي
Author-email: contact@adelmajli.com
License: UNKNOWN
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
License-File: LICENSE

# آلة حاسبة بسيطة - عادل مجلي

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

## التثبيت

```bash
pip install adel_majli_calculator
```

## الاستخدام

```python
from simple_calculator_adel_majli import add, subtract, multiply, divide

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

## الترخيص

هذا المشروع مرخص تحت رخصة MIT. انظر ملف `LICENSE` لمزيد من التفاصيل.



