-
Notifications
You must be signed in to change notification settings - Fork 5
/
mix.exs
40 lines (35 loc) · 1.01 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
defmodule OpencensusErlangPrometheus.Mixfile do
use Mix.Project
def project do
[app: :opencensus_erlang_prometheus,
version: "0.3.2",
elixir: "~> 1.4",
deps: deps(),
description: description(),
package: package(),
erlc_options: [:warnings_as_errors,
:warn_export_vars,
:warn_shadow_vars,
:warn_obsolete_guard],
elixirc_options: [warnings_as_errors: true],
test_coverage: [tool: ExCoveralls],
preferred_cli_env: ["coveralls": :test, "coveralls.html": :test]]
end
defp description do
"""
opencensus_erlang_prometheus
"""
end
defp package do
[maintainers: ["Ilya Khaprov"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/deadtrickster/opencensus-erlang-prometheus"},
files: ["src", "README.md", "rebar.config"]]
end
defp deps do
[{:prometheus, "~> 4.1"},
{:opencensus, "~> 0.3"},
# test
{:credo, "~> 0.8.7", only: [:dev, :test]}]
end
end