-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
mix.exs
68 lines (61 loc) · 1.42 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 Uplink.MixProject do
use Mix.Project
@version "0.3.0"
def project do
[
app: :uplink,
version: @version,
elixir: "~> 1.12",
start_permanent: Mix.env() == :prod,
deps: deps(),
docs: docs(),
description: description(),
package: package()
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
defp docs do
[
main: "Uplink",
canonical: "http://hexdocs.pm/uplink",
source_url: "https://github.com/elixir-uplink/uplink",
source_ref: "v#{@version}",
extras: [
"README.md"
],
deps: [
telemetry: "https://hexdocs.pm/telemetry",
telemetry_poller: "https://hexdocs.pm/telemetry_poller"
]
]
end
defp description do
"""
A simple abstraction for standardized observability with telemetry and more.
"""
end
defp package do
[
maintainers: ["Bryan Naegele"],
licenses: ["MIT"],
links: %{
"GitHub" => "https://github.com/elixir-uplink/uplink"
}
]
end
defp deps do
[
{:dialyxir, "~> 1.4", only: [:dev, :test], runtime: false},
{:ex_doc, "~> 0.31", only: [:dev, :docs]},
{:telemetry, "~> 1.0"},
{:telemetry_metrics, "~> 0.6 or ~> 1.0"},
{:telemetry_poller, "~> 1.0"},
{:telemetry_registry, "~> 0.3"}
]
end
end