1
0
mirror of https://github.com/avitex/elixir-glicko synced 2024-09-21 07:09:57 +00:00
glicko-elixir/mix.exs
dependabot-preview[bot] e89e29a9a9
Bump credo from 0.8.8 to 1.3.2 (#9)
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>
2020-04-21 01:04:59 +10: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.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