Metadata-Version: 2.1
Name: is-bigger
Version: 0.1.8
Summary: Compare two integers like never before
Author: ShackledMars261
License: MIT
Project-URL: Documentation, https://github.com/ShackledMars261/isbigger
Project-URL: Bug Tracker, https://github.com/ShackledMars261/isbigger/issues
Keywords: size,comparison,larger,smaller,equal,logic
Requires-Python: >=3.0
Description-Content-Type: text/markdown

# is_bigger

```
from is_bigger.functions import *

isBigger(2,1) # True
isSmaller(2,1) # False
isEqual(3,3) # True
isNotBigger(3,1) # False
isNotSmaller(3,1) # True
isNotEqual(3,1) # True
```
