Metadata-Version: 2.1
Name: round-utils
Version: 2.0.1
Summary: Package for rounding functions
Home-page: https://github.com/IliyaZinoviev/round-utils.git
Author: Marchenko Ilya
Author-email: mrmar333@yandex.ru
License: MIT
Keywords: round,utils,number
Platform: any
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.8
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown

![Codecov](https://codecov.io/gh/IliyaZinoviev/round-utils/branch/master/graph/badge.svg)
[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)
# Round utils
This package provides functions to round numbers up to a multiplicity of a pointed step.
Float value's rounded by literal representation.
# Example of usage

```python
>>> import round_utils

>>> round_utils.ceil(32.333, 0.02)
32.34

>>> round_utils.floor(32.333, 0.02)
32.32
```




