Metadata-Version: 2.1
Name: arabic-to-roman
Version: 1.0.0
Summary: Arabic number to Roman numeral converter
License: MIT
Author: Carl Mattsson
Author-email: carl.mattsson@gmail.com
Requires-Python: >=3.8,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Description-Content-Type: text/markdown

# Arabic number to Roman numeral converter

A simple converter that converts an Arabic number (e.g. `42`) to a Roman numeral (e.g. `XLII`).

Requires [Poetry](https://python-poetry.org/) to install:

```sh
poetry install --no-dev
```

## Running the tests

The tests consist of:

* Unit tests using `pytest`
* Static type checking using `mypy`

To run the tests, first install the required packages using

```sh
poetry install
```

Then run the tests with

```sh
poetry run test
```

