glicko-elixir/README.md

20 lines
694 B
Markdown
Raw Normal View History

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
2020-01-19 14:24:52 +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
2020-01-19 14:24:52 +00:00
Add `glicko` to your list of dependencies in `mix.exs`:
2017-11-16 03:49:53 +00:00
2020-01-19 14:24:52 +00:00
```elixir
def deps do
[{:glicko, "~> 0.6.0"}]
end
```