Metadata-Version: 2.4
Name: PositiveNegative-Library
Version: 0.1.1
Summary: Check if a number is positive, negative, or zero
Author: Rahaf Salh Qadah
Author-email: Rahaf Salh Qadah <Rahafsalhqadah2@gmail.com>
License: 
        MIT License
        Copyright (c) 2025 Rahaf Salh Qadah.
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: author
Dynamic: license-file
Dynamic: requires-python


# PosNegLib
مكتبة بسيطة لتحديد ما إذا كان العدد موجب أو سالب أو صفر.

## التثبيت
```bash
py -m pip install PosNegLib


الاستخدام من Python

from pos_neg import check_number

print(check_number(10)) # Positive
print(check_number(-3)) # Negative
print(check_number(0)) # Zero
