Metadata-Version: 2.4
Name: csv-reconcile-fingerprint
Version: 0.1
Summary: A scoring plugin for csv-reconcile using fingerprint clustering.
Author: Katharina Brunner
License: Apache-2.0
Project-URL: Homepage, https://github.com/cutterkom/csv-reconcile-fingerprint
Project-URL: Changelog, https://github.com/cutterkom/csv-reconcile-fingerprint/releases
Project-URL: Issues, https://github.com/cutterkom/csv-reconcile-fingerprint/issues
Project-URL: CI, https://github.com/cutterkom/csv-reconcile-fingerprint/actions
Classifier: License :: OSI Approved :: Apache Software License
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: csv-reconcile
Requires-Dist: unidecode
Provides-Extra: test
Requires-Dist: pytest; extra == "test"
Dynamic: license-file

# csv-reconcile-fingerprint

[![PyPI](https://img.shields.io/pypi/v/csv-reconcile-fingerprint.svg)](https://pypi.org/project/csv-reconcile-fingerprint/)
[![Tests](https://github.com/cutterkom/csv-reconcile-fingerprint/actions/workflows/test.yml/badge.svg)](https://github.com/cutterkom/csv-reconcile-fingerprint/actions/workflows/test.yml)
[![Changelog](https://img.shields.io/github/v/release/cutterkom/csv-reconcile-fingerprint?include_prereleases&label=changelog)](https://github.com/cutterkom/csv-reconcile-fingerprint/releases)
[![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](https://github.com/cutterkom/csv-reconcile-fingerprint/blob/main/LICENSE)

A scoring plugin for csv-reconcile using fingerprint clustering.

## Installation

Install this library using `pip`:
```bash
pip install csv-reconcile-fingerprint
```
## Usage

Usage instructions go here.

## Development

To contribute to this library, first checkout the code. Then create a new virtual environment:
```bash
cd csv-reconcile-fingerprint
python -m venv venv
source venv/bin/activate
```
Now install the dependencies and test dependencies:
```bash
python -m pip install -e '.[test]'
```
To run the tests:
```bash
python -m pytest
```
