Metadata-Version: 1.0
Name: is-even
Version: 1.0.3
Summary: Return true if the given number is even.
Home-page: https://github.com/victorbnl/is-even/
Author: Victor B
Author-email: victor.bonnelle@protonmail.com
License: UNKNOWN
Description: is-even
        =======
        
        |Test| |PyPI| |PyPI - Downloads|
        
           Return true if the given number is even
        
        Install
        -------
        
        Install with `pip <https://pypi.org/project/pip/>`__
        
        ::
        
           pip install is-even
        
        Usage
        -----
        
        .. code:: python
        
           from is_even import isEven
        
           isEven(0)
           # => False
           isEven('1')
           # => True
           isEven(2)
           # => False
           isEven('3')
           # => True
        
        .. |Test| image:: https://github.com/victorbnl/is-even/actions/workflows/test.yml/badge.svg?branch=main
           :target: https://github.com/victorbnl/is-even/actions/workflows/test.yml
        .. |PyPI| image:: https://img.shields.io/pypi/v/is-even
           :target: https://pypi.org/project/is-even/
        .. |PyPI - Downloads| image:: https://img.shields.io/pypi/dm/is-even
           :target: https://pypi.org/project/is-even/
        
Platform: UNKNOWN
