-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmix.exs
More file actions
37 lines (32 loc) · 704 Bytes
/
mix.exs
File metadata and controls
37 lines (32 loc) · 704 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
defmodule Elo.Mixfile do
use Mix.Project
def project do
[app: :elo,
version: "0.1.0",
elixir: "~> 1.0",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
deps: deps(),
description: description(),
package: package()]
end
def application do
[]
end
defp deps do
[{:ex_doc, ">= 0.0.0", only: :dev},
{:credo, "~> 0.4", only: [:dev, :test]},
{:inch_ex, ">= 0.0.0", only: :docs}]
end
defp description do
"""
Calculate Elo ratings.
"""
end
defp package do
[name: :elo,
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/paulfri/elo"},
maintainers: ["Paul Friedman"]]
end
end