1
0
mirror of https://github.com/avitex/elixir-glicko synced 2025-04-18 13:49:57 +00:00
glicko-elixir/mix.exs
Mikael Muszynski fcdeb45f7c Update inch_ex hex
Additionally, change the `only` environment from `docs` to `dev`. The
hex is useful during development, so this might as well be available
in `dev`.
2020-01-27 04:26:18 +01: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.16", 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