-
Notifications
You must be signed in to change notification settings - Fork 1
/
mix.exs
54 lines (49 loc) · 1.26 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
51
52
53
54
defmodule ClosedIntervals.MixProject do
use Mix.Project
def project do
[
app: :closed_intervals,
version: "0.5.0",
elixir: "~> 1.8",
start_permanent: Mix.env() == :prod,
description: description(),
package: package(),
source_url: "https://github.com/evnu/closed_intervals",
dialyzer: [
ignore_warnings: "dialyzer.ignore-warnings",
list_unused_filters: true,
plt_add_apps: [:ex_unit, :mix]
],
deps: deps(),
docs: [
main: "readme",
extras: ["README.md", "CHANGELOG.md"]
]
]
end
def application do
[
extra_applications: [:logger]
]
end
defp deps do
[
{:ex_doc, "~> 0.21", only: :dev, runtime: false},
{:docception, "~> 0.3", only: [:test, :dev], runtime: false},
{:credo, "~> 1.1.0", only: [:dev, :test], runtime: false},
{:dialyxir, "~> 1.0.0-rc.7", only: [:dev], runtime: false},
{:propcheck, "~> 1.2", only: [:dev, :test]}
]
end
defp description do
"Storing a set of closed intervals"
end
defp package do
[
name: "closed_intervals",
licenses: ["Apache 2.0"],
links: %{"Github" => "https://github.com/evnu/closed_intervals"},
maintainers: ["evnu"]
]
end
end