Metadata-Version: 2.1
Name: romanify
Version: 0.0.7
Summary: Roman numbers converting library 
Home-page: https://github.com/JaneTurueva/py-romanify
Author: Evgenia Turueva
Author-email: tindomirel1994@gmail.com
License: MIT
Platform: all
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: MacOS
Classifier: Operating System :: POSIX
Classifier: Programming Language :: Python
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 :: PyPy
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Libraries
Requires-Python: >3.4.*, <4
Provides-Extra: develop
Requires-Dist: coverage (!=4.3) ; extra == 'develop'
Requires-Dist: coveralls ; extra == 'develop'
Requires-Dist: pylama ; extra == 'develop'
Requires-Dist: pytest ; extra == 'develop'
Requires-Dist: pytest-cov ; extra == 'develop'
Requires-Dist: tox ; extra == 'develop'
Requires-Dist: twine ; extra == 'develop'

romanify
========

.. image:: https://coveralls.io/repos/github/JaneTurueva/py-romanify/badge.svg?branch=master
    :target: https://coveralls.io/github/JaneTurueva/py-romanify?branch=master
    :alt: Coveralls

.. image:: https://travis-ci.org/JaneTurueva/py-romanify.svg
    :target: https://travis-ci.org/JaneTurueva/py-romanify
    :alt: Travis CI

.. image:: https://img.shields.io/pypi/v/romanify.svg
    :target: https://pypi.python.org/pypi/romanify/
    :alt: Latest Version

.. image:: https://img.shields.io/pypi/wheel/romanify.svg
    :target: https://pypi.python.org/pypi/romanify/

.. image:: https://img.shields.io/pypi/pyversions/romanify.svg
    :target: https://pypi.python.org/pypi/romanify/

.. image:: https://img.shields.io/pypi/l/romanify.svg
    :target: https://pypi.python.org/pypi/romanify/


Roman numbers converting library.

Library uses following mapping:

========  ===========
Arabic    Roman
========  ===========
M         1000
CM        900
D         500
CD        400
C         100
XC        90
L         50
XL        40
X         10
IX        9
V         5
IV        4
I         1
========  ===========

Installation
------------

.. code-block:: shell

    pip install romanify


Command-line usage
------------------
.. code-block:: shell

    romanify 101
    > CI


Library usage
-------------
.. code-block:: shell

    from romanify import romanify

    print(romanify(101))


Versioning
==========

This software follows `Semantic Versioning`_

.. _Semantic Versioning: http://semver.org/

