Metadata-Version: 2.1
Name: Roman-Numerals-Simple
Version: 1.0.0
Summary: A recreation of the Uno card game
Home-page: https://github.com/gaming32/roman-numerals
Author: Gaming32
Author-email: gaming32i64@gmail.com
License: License :: OSI Approved :: MIT License
Platform: UNKNOWN
Description-Content-Type: text/markdown

# Installing
``` shell
$ python3 -m pip install Roman-Numerals-Simple
```

# Using
``` python
>>> import roman
>>> roman.int_to_roman(947)
'CMXLVII'
>>> roman.roman_to_int('CMXLVII')
947
```

