Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/avitex/elixir-glicko
Glicko rating system implementation in Elixir
https://github.com/avitex/elixir-glicko
elixir-lang glicko-ratings glicko2
Last synced: about 2 months ago
JSON representation
Glicko rating system implementation in Elixir
- Host: GitHub
- URL: https://github.com/avitex/elixir-glicko
- Owner: avitex
- License: mit
- Created: 2017-11-15T09:33:54.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2024-07-08T19:30:49.000Z (6 months ago)
- Last Synced: 2024-10-13T12:26:50.516Z (3 months ago)
- Topics: elixir-lang, glicko-ratings, glicko2
- Language: Elixir
- Homepage:
- Size: 56.6 KB
- Stars: 3
- Watchers: 3
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![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.8.1"}]
end
```