1
0
mirror of https://github.com/avitex/elixir-glicko synced 2024-11-14 23:49:58 +00:00
glicko-elixir/mix.exs
Mikael Muszynski 93c09273d2
Update ex_doc hex (#6)
Bump the minimum requirement and run `mix deps.update ex_doc`.
2020-02-04 23:07:28 +00:00

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.6.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, "~> 0.8", 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