Metadata-Version: 2.1
Name: eouTools
Version: 0.0.1
Summary: eouTools adds new ease-of-use features to python!
Home-page: https://github.com/cornusandu/MorePy
Author: Sandu Bogdan
Author-email: bogdanelsandu@hotmail.com
Project-URL: Bug Tracker, https://github.com/cornusandu/MorePy/issues
Project-URL: GitHub Repository, https://github.com/cornusandu/MorePy
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Operating System :: OS Independent
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: license.txt

# eouTools
## Requirements
- python >= 3.10
## eouTools.numbers
### isPositive
Syntax: isPositive(n: int | float) -> bool<br>
Alternative: `not isNegative(n)`<br>
Documentation: "Returns whether `n` is positive or not"

### isNegative
Syntax: `isNegative(n: int | float) -> bool`<br>
Alternative: `not isPositive(n)`<br>
Documentation: "Returns whether `n` is negative or not"

### isZero
Syntax: `isZero(n: int | float) -> bool`<br>
Alternative: `n == 0`<br>
Documentation: "Returns whether `n` is zero or not"
