Metadata-Version: 2.1
Name: egcd
Version: 0.0.1.1
Summary: Easy-to-import Python module with a basic, efficient, native implementation of the extended Euclidean algorithm.
Home-page: https://github.com/lapets/egcd
Author: Andrei Lapets
Author-email: a@lapets.io
License: MIT
Platform: UNKNOWN
Description-Content-Type: text/x-rst

====
egcd
====

Easy-to-import Python module with a basic, efficient, native implementation of the extended Euclidean algorithm.

.. image:: https://badge.fury.io/py/egcd.svg
   :target: https://badge.fury.io/py/egcd
   :alt: PyPI version and link.

Package Installation and Usage
------------------------------
The package is available on PyPI::

    python -m pip install egcd

The library can be imported in the usual way::

    from egcd import egcd


