Metadata-Version: 2.1
Name: mentor-match
Version: 2.1.0
Summary: A series of classes to match mentors and mentees
Home-page: UNKNOWN
Author: Jonathan Kerr
Author-email: jonathan.drew.kerr@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown

# Mentor Match

This is a package to help match mentees and mentors. It's specifically designed for a volunteer programme I support, but you could probably extend or alter it to suit whatever you're doing.

It uses [this implementation of Munkres](https://github.com/bmc/munkres) to find the most effective pairings. The Munkres algorithm works on a grid of scores.

## Scoring

Full details of how the matches are calculated can be read in the code itself.

## Installation

You can install this project with `python -m pip install mentor-match`

## Use

[TODO]


