Metadata-Version: 1.0
Name: python-serpente
Version: 0.1
Summary: Roman numeral encoder and decoder
Home-page: http://github.com/jcarbaugh/python-serpente/
Author: Jeremy Carbaugh
Author-email: jeremy@200ok.net
License: BSD License
Description: ===============
        python-serpente
        ===============
        
        Roman numeral conversion module.
        
        
        Installation
        ============
        
        ``python setup.py install``
        
        
        Usage
        =====
        
        >>> import serpente
        >>> serpente.encode(1234)
        u'MCCXXXIV'
        >>> serpente.decode(u'MCCXXXIV')
        1234
Platform: any
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
