README.md

# Skills

A skill-based ranking algorithms library for Elixir. Includes Elo and TrueSkill.

## Installation

Skills is [available in Hex](https://hex.pm/packages/skills). The package can be installed as:

  1. Add skills to your list of dependencies in `mix.exs`:

        def deps do
          [{:skills, "~> 0.0.1"}]
        end

  2. Ensure skills is started before your application:

        def application do
          [applications: [:skills]]
        end