-
Notifications
You must be signed in to change notification settings - Fork 1
/
mix.exs
40 lines (37 loc) · 925 Bytes
/
mix.exs
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
38
39
40
defmodule Starchoice.MixProject do
use Mix.Project
@version "0.3.0"
@description "Map decoding library"
@github "https://github.com/nicklayb/starchoice"
def project do
[
app: :starchoice,
version: @version,
elixir: "~> 1.8",
description: @description,
source_url: @github,
docs: [
main: "readme",
extras: ["README.md"]
],
package: package(),
deps: [
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false},
{:credo, "~> 0.6", only: [:dev, :test]},
{:excoveralls, "~> 0.10", only: :test}
],
test_coverage: [tool: ExCoveralls],
preferred_cli_env: [coveralls: :test]
]
end
def package do
[
licenses: ["MIT"],
links: %{
"GitHub" => @github
},
files: ["lib", "mix.exs", "mix.lock", "README.md", "LICENSE"],
maintainers: ["Nicolas Boisvert"]
]
end
end