Metadata-Version: 1.0
Name: romanclass
Version: 1.0.1
Summary: Integer subset class using Roman numeral input and output
Home-page: https://launchpad.net/romanclass
Author: Vernon Cole
Author-email: vernondcole@gmail.com
License: GPL
Description: A "Roman" object is stored in the computer as a binary integer,
        but it is displayed in Roman numerals.
        (In technical terms, it is a subset of the built-in class int,
        with a _str_() method which returns a Roman numeral string.)
        
        Roman objects act very much like the built-in Decimal objects in Python,
        they can be added, subtracted, multiplied, or divided and the result will be
        another object of the same class.
        
        So a programmer can say:
        
        import romanclass as roman
        two = roman.Roman(2)
        five = roman.Roman('V')
        print (two+five)
        
        and the computer will print:
        
        VII
        
Keywords: roman romanclass emulate int
Platform: Windows Linux IronPython
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Education
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Natural Language :: English
Classifier: Natural Language :: Latin
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Libraries :: Python Modules
