mirror of
https://github.com/avitex/elixir-glicko
synced 2024-11-01 01:29:57 +00:00
20 lines
708 B
Markdown
20 lines
708 B
Markdown
[![Build Status](https://travis-ci.com/avitex/elixir-glicko.svg?branch=master)](https://travis-ci.com/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)
|
|
[![Inline docs](http://inch-ci.org/github/avitex/elixir-glicko.svg)](http://inch-ci.org/github/avitex/elixir-glicko)
|
|
|
|
# Glicko
|
|
|
|
**Implementation of the [Glicko rating system](http://www.glicko.net/glicko.html).**
|
|
Documentation hosted on [hexdocs](https://hexdocs.pm/glicko).
|
|
|
|
## Installation
|
|
|
|
Add `glicko` to your list of dependencies in `mix.exs`:
|
|
|
|
```elixir
|
|
def deps do
|
|
[{:glicko, "~> 0.7.0"}]
|
|
end
|
|
```
|