Source: roman-numerals Section: python Priority: optional Maintainer: Debian Python Team Uploaders: Dmitry Shachnev Homepage: https://github.com/AA-Turner/roman-numerals Build-Depends: debhelper-compat (= 13), dh-python, dh-sequence-python3, flit (>= 3.7), pybuild-plugin-pyproject, python3-all, python3-pytest (>= 8) Rules-Requires-Root: no Standards-Version: 4.7.1 Vcs-Git: https://salsa.debian.org/python-team/packages/roman-numerals.git Vcs-Browser: https://salsa.debian.org/python-team/packages/roman-numerals Package: python3-roman-numerals Architecture: all Depends: ${misc:Depends}, ${python3:Depends} Description: Python library for manipulating well-formed Roman numerals Integers between 1 and 3,999 (inclusive) are supported. Numbers beyond this range will return an OutOfRangeError. . The classical system of roman numerals requires that the same character may not appear more than thrice consecutively, meaning that 'MMMCMXCIX' (3,999) is the largest well-formed Roman numeral. The smallest is 'I' (1), as there is no symbol for zero in Roman numerals. . Both upper- and lower-case formatting of roman numerals are supported, and likewise for parsing strings, although the entire string must be of the same case. Numerals that do not adhere to the classical form are rejected with an InvalidRomanNumeralError.