Metadata-Version: 2.1
Name: slownie
Version: 1.0.0rc1
Summary: Polish spelled-out numbers and amounts
Home-page: http://pypi.python.org/pypi/slownie/
Author: Adam Karpierz
Author-email: adam@karpierz.net
Maintainer: Adam Karpierz
Maintainer-email: adam@karpierz.net
License: zlib/libpng License ; http://opensource.org/licenses/zlib
Download-URL: http://pypi.python.org/pypi/slownie/
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.
        
        .. 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 2.7 or higher or 3.4 or higher
        
          * http://www.python.org/
          * 2.7 and 3.6 are primary test environments.
        
        + pip and setuptools
        
          * http://pypi.python.org/pypi/pip
          * http://pypi.python.org/pypi/setuptools
        
        To install run::
        
            python -m pip install --upgrade slownie
        
        Development
        ===========
        
        Visit `development page <https://github.com/karpierz/slownie>`__
        
        Installation from sources:
        
        Clone the `sources <https://github.com/karpierz/slownie>`__ and run::
        
            python -m pip install ./slownie
        
        or on development mode::
        
            python -m pip install --editable ./slownie
        
        Prerequisites:
        
        + Development is strictly based on *tox*. To install it run::
        
            python -m pip install tox
        
        License
        =======
        
          | Copyright (c) 2016-2018 Adam Karpierz
          |
          | Licensed under the zlib/libpng License
          | http://opensource.org/licenses/zlib
          | Please refer to the accompanying LICENSE file.
        
        Authors
        =======
        
        * Adam Karpierz <adam@karpierz.net>
        
        Changelog
        =========
        
        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: Natural Language :: Polish
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
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
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: IronPython
Classifier: Programming Language :: Python :: Implementation :: Jython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Programming Language :: Python :: Implementation :: Stackless
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=2.7.0,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*
Description-Content-Type: text/x-rst
Provides-Extra: doc
Provides-Extra: test
