mirror of
https://github.com/avitex/elixir-glicko
synced 2024-11-01 01:29:57 +00:00
e89e29a9a9
Bumps [credo](https://github.com/rrrene/credo) from 0.8.8 to 1.3.2. - [Release notes](https://github.com/rrrene/credo/releases) - [Changelog](https://github.com/rrrene/credo/blob/master/CHANGELOG.md) - [Commits](https://github.com/rrrene/credo/compare/v0.8.8...v1.3.2) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
37 lines
736 B
Elixir
37 lines
736 B
Elixir
defmodule Glicko.Mixfile do
|
|
use Mix.Project
|
|
|
|
@description """
|
|
Implementation of the Glicko rating system
|
|
"""
|
|
|
|
def project do
|
|
[
|
|
app: :glicko,
|
|
version: "0.7.0",
|
|
elixir: "~> 1.9",
|
|
start_permanent: Mix.env() == :prod,
|
|
deps: deps(),
|
|
package: package(),
|
|
description: @description
|
|
]
|
|
end
|
|
|
|
defp deps do
|
|
[
|
|
{:inch_ex, "~> 2.0", only: [:dev, :docs]},
|
|
{:ex_doc, "~> 0.21", only: :dev, runtime: false},
|
|
{:credo, "~> 1.3", only: [:dev, :test], runtime: false}
|
|
]
|
|
end
|
|
|
|
defp package do
|
|
[
|
|
name: :glicko,
|
|
maintainers: ["James Dyson"],
|
|
licenses: ["MIT"],
|
|
links: %{"GitHub" => "https://github.com/avitex/elixir-glicko"}
|
|
]
|
|
end
|
|
end
|