-
Notifications
You must be signed in to change notification settings - Fork 1
/
mix.exs
44 lines (39 loc) · 972 Bytes
/
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
defmodule Patiently.Mixfile do
use Mix.Project
def project do
[
app: :patiently,
version: "0.2.0",
description: description(),
package: package(),
elixir: "~> 1.2",
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
dialyzer: [plt_add_deps: :transitive],
deps: deps()
]
end
def application do
[applications: [:logger]]
end
defp description do
"""
Helpers for waiting on asynchronous events
"""
end
defp package do
[
files: ["lib", "LICENSE.txt", "mix.exs", "mix.lock", "README.md"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/dantswain/patiently"},
maintainers: ["Dan Swain"]
]
end
defp deps do
[
{:ex_doc, "~> 0.23.0", only: :dev, runtime: false},
{:credo, "~> 1.5.1", only: [:dev, :test], runtime: false},
{:dialyxir, "~> 1.0.0", only: :dev, runtime: false}
]
end
end