-
Notifications
You must be signed in to change notification settings - Fork 3
/
mix.exs
66 lines (58 loc) · 1.75 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
defmodule PidController.MixProject do
@moduledoc false
use Mix.Project
def project do
[
app: :pid_controller,
version: "0.1.3",
name: "PidController",
description: description(),
source_url: "http://github.com/CraigCottingham/pid_controller",
homepage_url: "http://github.com/CraigCottingham/pid_controller",
docs: [
output: "docs/hexdocs"
],
package: package(),
elixir: "~> 1.9",
elixirc_options: [warnings_as_errors: true],
elixirc_paths: elixirc_paths(Mix.env()),
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
preferred_cli_env: [espec: :test],
aliases: aliases(),
deps: deps()
]
end
def application do
[
mod: {PidController.Application, []},
extra_applications: [:logger]
]
end
defp aliases do
[
credo: ["credo --strict"],
test: ["format", "credo --strict", "dialyzer", "espec"],
"test.unit": ["espec"]
]
end
defp deps do
[
{:credo, "~> 1.7", only: [:dev, :test], runtime: false},
# can't update dialyxir to ~> 1.4 because it doesn't work with Elixir < 1.12
{:dialyxir, "~> 1.3", only: [:dev, :test], runtime: false},
{:espec, "~> 1.9", only: :test},
# can't update ex_doc to ~> 0.31.2 because it doesn't work with Elixir < 1.12
{:ex_doc, "~> 0.29.4", only: [:dev, :test], runtime: false}
]
end
defp description, do: "A PID (proportional/integral/derivative) controller in Elixir."
defp elixirc_paths(:test), do: ["lib", "spec/support"]
defp elixirc_paths(_), do: ["lib"]
defp package do
[
licenses: ["Apache-2.0"],
links: %{"GitHub" => "https://github.com/CraigCottingham/pid_controller"}
]
end
end