Metadata-Version: 2.1
Name: usefulpy
Version: 0.7
Summary: The most useful functions in everyday life
Home-page: https://github.com/bersena911/usefulpy
Download-URL: https://github.com/bersena911/usefulpy/archive/0.6.tar.gz
Author: Mate Bersenadze
Author-email: matebersenadze@gmail.com
License: MIT
Keywords: math,dummy,useful
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
License-File: LICENSE.txt

# UsefulPy
The most useful functions in everyday life

## Installation

Use the package manager [pip](https://pip.pypa.io/en/stable/) to install usefulpy.

```bash
pip install usefulpy
```

## Usage

```python
from usefulpy.math import is_negative, is_ten

is_ten(10) # returns 'True'
is_ten(9) # returns 'False'

is_negative(-1) # returns 'True'
is_negative(1) # returns 'False'
is_negative(0) # returns 'False'
```

## Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

## License
[MIT](https://choosealicense.com/licenses/mit/)
