-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathmix.exs
executable file
·67 lines (61 loc) · 1.58 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
55
56
57
58
59
60
61
62
63
64
65
66
67
defmodule Envelope.Mixfile do
use Mix.Project
def project() do
[
app: :envelope,
version: "1.4.1",
elixir: "~> 1.2",
description: description(),
package: package(),
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
test_coverage: [tool: ExCoveralls],
preferred_cli_env: [coveralls: :test],
deps: deps(),
aliases: aliases()
]
end
def application() do
[applications: [:logger, :geo, :distance]]
end
defp deps() do
[
{:geo, "~> 1.0 or ~> 2.0 or ~> 3.0 or ~> 4.0"},
{:distance, "~> 0.2.1 or ~> 1.0"},
{:excoveralls, "~> 0.4", only: :test},
{:earmark, "~> 1.0", only: :dev},
{:ex_doc, "~> 0.24", only: :dev, runtime: false},
{:poison, "~> 5.0", only: [:dev, :test]},
{:credo, "~> 1.7", only: [:dev, :test], runtime: false},
{:dialyxir, "~> 1.3", only: [:dev], runtime: false},
{:topo, "~> 0.4", only: [:test]}
]
end
defp description do
"""
A library for calculating envelopes of geometries and tools to compare them.
"""
end
defp package() do
[
files: ["lib/envelope.ex", "mix.exs", "README*"],
maintainers: ["Powell Kinney"],
licenses: ["MIT"],
links: %{
"GitHub" => "https://github.com/pkinney/envelope_ex",
"Docs" => "https://hexdocs.pm/envelope/Envelope.html"
}
]
end
defp aliases() do
[
validate: [
"clean",
"compile --warnings-as-errors",
"format --check-formatted",
"credo",
"dialyzer"
]
]
end
end