Metadata-Version: 2.4
Name: simplemapreduce
Version: 0.0.4
Summary: A simple map reduce multithreaded library
Author-email: Yiannis Giannelos <johngiannelos@gmail.com>
License-Expression: MIT
License-File: LICENSE.txt
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# simplemapreduce

[![PyPI - Version](https://img.shields.io/pypi/v/simplemapreduce.svg)](https://pypi.org/project/simplemapreduce)

---

## Table of Contents

- [Installation](#installation)
- [License](#license)

## Installation

```console
pip install simplemapreduce
```

## Development

The local development setup is based on [hatch](https://hatch.pypa.io/latest/)

## Create the default hatch env

```
hatch env create
```

## Get a shell with the env activated

```
hatch shell
```

## Run various commands

### Linting

```
hatch run lint
```

### Code formatting

```
hatch run format
```

### Type checking

```
hatch run type-check
```

### Testing

```
hatch run test
```

## License

`simplemapreduce` is distributed under the terms of the [MIT](https://spdx.org/licenses/MIT.html) license.
