Metadata-Version: 2.4
Name: MaxNumberLib
Version: 0.1.0
Summary: Find the maximum number from a list
Author: Mahmmed Albadwy
Author-email: Mahmmed Albadwy <mamalbadwy23@gmail.com>
License: 
        
        MIT License
        Copyright (c) 2025 Mahmmed Albadwy
        
Requires-Python: >=3.13
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: author
Dynamic: license-file
Dynamic: requires-python


# MaxNumberLib
مكتبة لإيجاد أكبر رقم في قائمة أو مجموعة من الأعداد.

## CMD
MaxNumberLib 3 9 1 5

## Python
from max_number import find_max
numbers = [3, 9, 1, 5]
print(find_max(numbers)) # 9

