Metadata-Version: 1.1
Name: python-serpente
Version: 1.0.1
Summary: Roman numeral encoder and decoder
Home-page: http://github.com/jcarbaugh/python-serpente/
Author: Jeremy Carbaugh
Author-email: jeremy@jcarbaugh.com
License: BSD License
Description: ===============
        python-serpente
        ===============
        
        Roman numeral conversion. Supports Python 3.6, 3.7, and 3.8.
        
        .. image:: https://github.com/jcarbaugh/python-serpente/workflows/Python%20package/badge.svg
        
        Usage
        =====
        
            >>> import serpente
            >>> serpente.encode(1234)
            u'MCCXXXIV'
            >>> serpente.decode(u'MCCXXXIV')
            1234
        
Platform: any
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
