Metadata-Version: 2.1
Name: Primaaaaaaa
Version: 0.0.1
Summary: A Python package to check if a number is prime
Author: Allyaaa
Author-email: maulidallya06@gmail.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


    Prima is a simple Python package that provides a class for checking whether a given number is prime.

    Usage:
    ```
    from Prima import Prima

    number = 17
    primality_checker = Prima(number)

    if primality_checker.is_prima():
        print(f"{number} is a prime number.")
    else:
        print(f"{number} is not a prime number.")
    ```

    The package uses a basic algorithm to determine primality by checking divisibility up to the square root of the given number.

    For more information, please visit the GitHub repository: https://github.com/yourusername/Prima
    
