Metadata-Version: 2.1
Name: slownie
Version: 1.1.2
Summary: Polish spelled-out numbers and amounts.
Home-page: https://pypi.org/project/slownie/
Author: Adam Karpierz
Author-email: adam@karpierz.net
Maintainer: Adam Karpierz
Maintainer-email: adam@karpierz.net
License: zlib/libpng License ; https://opensource.org/licenses/Zlib
Download-URL: https://pypi.org/project/slownie/
Project-URL: Documentation, https://slownie.readthedocs.io/
Project-URL: Source, https://github.com/karpierz/slownie
Project-URL: Issues, https://github.com/karpierz/slownie/issues
Description: slownie
        =======
        
        Polish spelled-out numbers and amounts.
        
        Overview
        ========
        
        | **slownie(value):** 
        | **slownie_zl(amount):** 
        | **slownie_zl100gr(amount):** 
        
        Provides routines to spell out numbers and amounts in Polish.
        
        `PyPI record`_.
        
        Usage
        -----
        
        .. code:: python
        
          >>> from slownie import *
          >>> slownie(12892)
          dwanaście tysięcy osiemset dziewięćdziesiąt dwa
          >>> slownie_zl(123.34)
          sto dwadzieścia trzy złote trzydzieści cztery grosze
          >>> slownie_zl100gr(123.34)
          sto dwadzieścia trzy złote 34/100
        
        Installation
        ============
        
        Prerequisites:
        
        + Python 3.6 or higher
        
          * https://www.python.org/
          * 3.7 is a primary test environment.
        
        + pip and setuptools
        
          * https://pypi.org/project/pip/
          * https://pypi.org/project/setuptools/
        
        To install run:
        
          .. parsed-literal::
        
            python -m pip install --upgrade |package|
        
        Development
        ===========
        
        Prerequisites:
        
        + Development is strictly based on *tox*. To install it run::
        
            python -m pip install --upgrade tox
        
        Visit `development page`_.
        
        Installation from sources:
        
        clone the sources:
        
          .. parsed-literal::
        
            git clone |respository| |package|
        
        and run:
        
          .. parsed-literal::
        
            python -m pip install ./|package|
        
        or on development mode:
        
          .. parsed-literal::
        
            python -m pip install --editable ./|package|
        
        License
        =======
        
          | Copyright (c) 2016-2020 Adam Karpierz
          | Licensed under the zlib/libpng License
          | https://opensource.org/licenses/Zlib
          | Please refer to the accompanying LICENSE file.
        
        Authors
        =======
        
        * Adam Karpierz <adam@karpierz.net>
        
        .. |package| replace:: slownie
        .. |package_bold| replace:: **slownie**
        .. |respository| replace:: https://github.com/karpierz/slownie.git
        .. _development page: https://github.com/karpierz/slownie/
        .. _PyPI record: https://pypi.org/project/slownie/
        
        Changelog
        =========
        
        1.1.2 (2020-10-17)
        ------------------
        - Add support for Python 3.8 and 3.9.
        - Drop support for Python 3.5.
        - Drop support for Python 2.
        - Fix a bug in slownie_zl().
        - Add unittests.
        - General update and cleanup.
        - Fixed docs setup.
        
        1.0.0rc1 (2018-11-21)
        ---------------------
        - Fix a bug in slownie_zl() and slownie_zl100gr()
        - | Code improvement according to the suggestion and the patch
          | from Michal Borkowski (https://github.com/wielkiborsuk).
          | Thank you very much, Michal!
        
        1.0.0b5 (2018-11-08)
        --------------------
        - Drop support for Python 2.6 and 3.0-3.3
        - Update required setuptools version.
        
        1.0.0b4 (2018-05-08)
        --------------------
        - Update required setuptools version.
        - Improve and simplify setup and packaging.
        
        1.0.0b3 (2018-02-26)
        --------------------
        - Improve and simplify setup and packaging.
        
        1.0.0b2 (2018-01-28)
        --------------------
        - Fix a bug and inconsistencies in tox.ini
        - Update of README.rst.
        
        0.9.7b2 (2018-01-24)
        --------------------
        - Little update of README.rst
        
        0.9.7b1 (2018-01-24)
        --------------------
        - Update required Sphinx version.
        - Update doc Sphinx configuration files.
        
        0.9.5b1 (2017-11-18)
        --------------------
        - Add slownie_zl and slownie_zl100gr.
        - Setup improvements.
        - Other minor improvements.
        
        0.9.0b0 (2017-04-03)
        --------------------
        - First useful release.
        
        0.1.0 (2016-09-23)
        ------------------
        - Initial release.
        
Keywords: slownie
Platform: any
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: zlib/libpng License
Classifier: Operating System :: OS Independent
Classifier: Natural Language :: Polish
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: Stackless
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: <4.0.0,>=3.6.0
Description-Content-Type: text/x-rst; charset=UTF-8
Provides-Extra: doc
Provides-Extra: test
