Metadata-Version: 2.1
Name: tamarix_analytics
Version: 0.0.2
Summary: A Python package for row matching and F1 score calculations.
Author: Tamarix Technologies
Author-email: kristian@tamarix.tech
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: munkres
Requires-Dist: pydantic

# Tamarix Analytics

A Python package for row matching and F1 score calculations using the Hungarian algorithm.

## Installation

```bash
pip install tamarix_analytics
```

## Usage

```python
from tamarix_analytics import match_rows, f1_score_unordered, f1_score_ordered, get_row_score
```
