2017-11-16 03:49:53 +00:00
|
|
|
[![Build Status](https://travis-ci.org/avitex/elixir-glicko.svg)](https://travis-ci.org/avitex/elixir-glicko)
|
|
|
|
[![Hex.pm](https://img.shields.io/hexpm/v/glicko.svg)](https://hex.pm/packages/glicko)
|
|
|
|
[![Hex Docs](https://img.shields.io/badge/hex-docs-blue.svg)](https://hexdocs.pm/glicko)
|
2017-11-16 04:18:57 +00:00
|
|
|
[![Inline docs](http://inch-ci.org/github/avitex/elixir-glicko.svg)](http://inch-ci.org/github/avitex/elixir-glicko)
|
2017-11-16 03:49:53 +00:00
|
|
|
|
2017-11-16 04:18:57 +00:00
|
|
|
# Glicko
|
2017-11-16 03:49:53 +00:00
|
|
|
|
2017-11-22 07:33:48 +00:00
|
|
|
**Implementation of the [Glicko rating system](http://www.glicko.net/glicko.html).**
|
2017-11-16 03:49:53 +00:00
|
|
|
Documentation hosted on [hexdocs](https://hexdocs.pm/glicko).
|
|
|
|
|
|
|
|
## Installation
|
|
|
|
|
|
|
|
Add `glicko` to your list of dependencies in `mix.exs`:
|
|
|
|
|
|
|
|
```elixir
|
|
|
|
def deps do
|
2017-11-29 03:04:48 +00:00
|
|
|
[{:glicko, "~> 0.6.0"}]
|
2017-11-16 03:49:53 +00:00
|
|
|
end
|
|
|
|
```
|