Metadata-Version: 2.1
Name: pyround
Version: 0.1.0
Summary: PYPI package with only 1 function to round float numbers to the number of significant digits
Author: stanislav
Author-email: stas.prokopiev@gmail.com
Requires-Python: >=3.6
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Description-Content-Type: text/x-rst

==============================
pyround
==============================

.. image:: https://img.shields.io/github/last-commit/stas-prokopiev/pyround
   :target: https://img.shields.io/github/last-commit/stas-prokopiev/pyround
   :alt: GitHub last commit

.. image:: https://img.shields.io/github/license/stas-prokopiev/pyround
    :target: https://github.com/stas-prokopiev/pyround/blob/master/LICENSE.txt
    :alt: GitHub license<space><space>

.. image:: https://img.shields.io/pypi/v/pyround
   :target: https://img.shields.io/pypi/v/pyround
   :alt: PyPI

.. image:: https://img.shields.io/pypi/pyversions/pyround
   :target: https://img.shields.io/pypi/pyversions/pyround
   :alt: PyPI - Python Version


.. contents:: **Table of Contents**

Overview.
=========================
pyround is a one function PYPI package made only with one
goal to round float numbers in python to asked number of signifacant digits


.. code-block:: python

    import pyround

    pyround.pyround(0.23234, 2)  # 0.23
    pyround.pyround(0.235, 2)  # 0.24
    pyround.pyround(105.3, 1)  # 100
    pyround.pyround(125.3, 2)  # 130

Installation via pip:
======================

.. code-block:: bash

    pip install pyround

Links
=====

    * `PYPI <https://pypi.org/project/pyround/>`_
    * `GitHub <https://github.com/stas-prokopiev/pyround>`_

Contacts
========

    * Email: stas.prokopiev@gmail.com
    * `vk.com <https://vk.com/stas.prokopyev>`_
    * `Facebook <https://www.facebook.com/profile.php?id=100009380530321>`_

License
=======

This project is licensed under the MIT License.

