Metadata-Version: 2.1
Name: jepler-circuitpython-udecimal
Version: 1.0.0a2
Summary: Reduced version of the decimal library for CircuitPython
Home-page: https://github.com/jepler/Jepler_CircuitPython_udecimal
Author: Jeff Epler
Author-email: jepler@gmail.com
License: MIT
Project-URL: Source, https://github.com/jepler/Jepler_CircuitPython_udecimal
Project-URL: Documentation, https://jepler-udecimal.readthedocs.io/en/latest/api/jepler_udecimal/index.html
Project-URL: Tracker, https://github.com/jepler/Jepler_CircuitPython_udecimal/issues
Project-URL: Pull Requests, https://github.com/jepler/Jepler_CircuitPython_udecimal/pulls
Description: Introduction
        ============
        
        .. image:: https://readthedocs.org/projects/jepler-udecimal/badge/?version=latest
            :target: https://jepler-udecimal.readthedocs.io/en/latest/
            :alt: Documentation Status
        
        .. image:: https://img.shields.io/discord/327254708534116352.svg
            :target: https://adafru.it/discord
            :alt: Discord
        
        .. image:: https://github.com/jepler/Jepler_CircuitPython_udecimal/workflows/Build%20CI/badge.svg
            :target: https://github.com/jepler/Jepler_CircuitPython_udecimal/actions
            :alt: Build Status
        
        .. image:: https://img.shields.io/badge/code%20style-black-000000.svg
            :target: https://github.com/psf/black
            :alt: Code Style: Black
        
        Reduced version of the decimal library for CircuitPython
        
        
        Dependencies
        =============
        This library depends on:
        
        * `Adafruit CircuitPython <https://github.com/adafruit/circuitpython>`_
        
        Note that some CircuitPython core changes are currently needed to support
        udecimal.  Until they are merged, you can use the artifacts from `the relevant
        pull request <https://github.com/adafruit/circuitpython/pull/3377>`_.
        
        The library also runs on desktop Python3, and should give numerically identical
        results across all platorms.
        
        Installing from PyPI
        =====================
        
        To install for current user:
        
        .. code-block:: shell
        
            python3 -mpip install --user jepler-circuitpython-udecimal
        
        To install system-wide (this may be required in some cases):
        
        .. code-block:: shell
        
            sudo python3 -mpip install jepler-circuitpython-udecimal
        
        To install in a virtual environment in your current project:
        
        .. code-block:: shell
        
            mkdir project-name && cd project-name
            python3 -m venv .env
            source .env/bin/activate
            pip3 install jepler-circuitpython-udecimal
        
        Usage Example
        =============
        
        .. code-block:: python
        
            >>> from jepler_udecimal import Decimal
            >>> Decimal(2)/3
            Decimal('0.6666666666666666666666666667')
            >>> Decimal('.1') + Decimal('.2') == Decimal('.3')
            True
        
        
        Contributing
        ============
        
        Contributions are welcome! Please read our `Code of Conduct
        <https://github.com/jepler/Jepler_CircuitPython_udecimal/blob/master/CODE_OF_CONDUCT.md>`_
        before contributing to help this project stay welcoming.
        
        Documentation
        =============
        
        For information on building library documentation, please check out `this guide <https://learn.adafruit.com/creating-and-sharing-a-circuitpython-library/sharing-our-docs-on-readthedocs#sphinx-5-1>`_.
        
Keywords: adafruit blinka circuitpython micropython udecimal numeric helper arbitraryprecision math
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries
Classifier: License :: OSI Approved :: MIT License
Classifier: License :: OSI Approved :: Python Software Foundation License 
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/x-rst
