Metadata-Version: 2.4
Name: mensura
Version: 0.2.2
Summary: Unit converter using graph-based methods
Requires-Python: >=3.13
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# mensura

#### By *Albert Dow*

#### *A simple Python package for converting between units*

## Description

A lightweight and simple package for converting between units,
`mensura` uses a graph-based approach to determine the shortest
path to the desired unit.

Currently only supports basic length and time units.

## Usage

```python
from mensura import Converter
converter = Converter()
converter.convert(1.0, "km", "m")
```
