-
Notifications
You must be signed in to change notification settings - Fork 7
/
mix.exs
68 lines (62 loc) · 1.54 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
68
defmodule Vector.Mixfile do
use Mix.Project
def project do
[
app: :vector,
version: "1.1.0",
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],
dialyzer: [plt_add_apps: [:poison, :mix]],
deps: deps(),
aliases: aliases()
]
end
# Configuration for the OTP application
#
# Type "mix help compile.app" for more information
def application do
[applications: [:logger]]
end
defp deps do
[
{:earmark, "~> 1.0", only: :dev},
{:dialyxir, "~> 1.0", only: [:dev], runtime: false},
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false},
{:credo, "~> 1.5", only: :dev, runtime: false},
{:benchfella, "~> 0.3", only: :dev},
{:excoveralls, "~> 0.4", only: :test}
]
end
defp description do
"""
Library of common vector functions for use in geometric or graphical calculations.
"""
end
defp package do
[
files: ["lib", "mix.exs", "README*"],
maintainers: ["Powell Kinney"],
licenses: ["MIT"],
links: %{
"GitHub" => "https://github.com/pkinney/vector_ex",
"Docs" => "https://hexdocs.pm/vector/Vector.html"
}
]
end
defp aliases do
[
validate: [
"clean",
"compile --warnings-as-error",
"format --check-formatted",
"credo",
"dialyzer"
]
]
end
end