-
Notifications
You must be signed in to change notification settings - Fork 2
/
mix.exs
50 lines (44 loc) · 1.15 KB
/
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
41
42
43
44
45
46
47
48
49
50
defmodule Kaur.Mixfile do
use Mix.Project
@project_url "https://github.com/fewlinesco/kaur"
def project do
[
app: :kaur,
build_embedded: Mix.env() == :prod,
deps: deps(),
description: "A bunch of helper functions to ease the development of your applications",
docs: [main: "readme", extras: ["README.md"]],
elixir: "~> 1.4",
homepage_url: @project_url,
name: "Kaur",
package: package(),
source_url: @project_url,
start_permanent: Mix.env() == :prod,
version: "1.1.0",
dialyzer: dialyzer()
]
end
def application do
[]
end
defp deps do
[
{:credo, "~> 0.8.10", only: [:dev, :test]},
{:dialyxir, "~> 0.5", only: [:dev, :test]},
{:earmark, ">= 1.0.3", only: [:docs]},
{:ex_doc, "~> 0.16.2", only: [:docs]},
{:excoveralls, "~> 0.7.1", only: [:test]},
{:inch_ex, "~> 0.5.5", only: [:docs]}
]
end
defp dialyzer do
[verbose: true, flags: [:error_handling, :race_conditions]]
end
defp package do
[
licenses: ["MIT"],
links: %{"GitHub" => @project_url},
maintainers: ["Fewlines SAS"]
]
end
end