Metadata-Version: 2.1
Name: numutils.n2w
Version: 0.1.3
Summary: Helper library that converts numbers to words
Home-page: https://github.com/gnuchu/numutils.n2w
Author: John Griffiths
Author-email: gnuchu@gmail.com
License: MIT license
Keywords: n2w
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Requires-Python: >=3.7
Description-Content-Type: text/x-rst
License-File: LICENSE

########
numutils
########


n2w - Numbers to Words
======================

A python package to convert a number to words.

Usage
-----

::

   from numutils import n2w

   n = n2w(1023)
   n.words()

will output

::

   one thousand and twenty three

* Free software: MIT license


Features
--------

* TODO

Credits
-------

This package was created with Cookiecutter_ and the `audreyr/cookiecutter-pypackage`_ project template.

.. _Cookiecutter: https://github.com/audreyr/cookiecutter
.. _`audreyr/cookiecutter-pypackage`: https://github.com/audreyr/cookiecutter-pypackage


=======
History
=======

0.1.0 (2021-12-18)
------------------

* First release on PyPI.

0.1.3 (2021-01-17)

* Fix installer dependecies


