aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkballou <kballou@devnulllabs.io>2016-03-15 16:45:02 -0600
committerkballou <kballou@devnulllabs.io>2016-03-15 16:45:02 -0600
commit5960bd16f2695683076da6ec259ea82cae27add2 (patch)
tree286dc6e2265359d771d88b56252cc94c88ba3819
parentf6d2af6c5b0df569759226e61436c5e283faedf8 (diff)
downloadex_prometheus_io-5960bd16f2695683076da6ec259ea82cae27add2.tar.gz
ex_prometheus_io-5960bd16f2695683076da6ec259ea82cae27add2.tar.xz
Add missing project attributes for hex publicationv0.0.1
-rw-r--r--mix.exs14
1 files changed, 14 insertions, 0 deletions
diff --git a/mix.exs b/mix.exs
index 96d9520..b8f2629 100644
--- a/mix.exs
+++ b/mix.exs
@@ -3,6 +3,8 @@ defmodule ExPrometheusIo.Mixfile do
def project do
[app: :ex_prometheus_io,
+ description: description,
+ package: package,
version: "0.0.1",
elixir: "~> 1.2",
build_embedded: Mix.env == :prod,
@@ -18,4 +20,16 @@ defmodule ExPrometheusIo.Mixfile do
defp deps do
[{:poison, "~> 1.5"}]
end
+
+ defp description do
+ "Prometheus.io Elixir client API library"
+ end
+
+ defp package do
+ [maintainers: ["Kenny Ballou"],
+ licenses: ["Apache 2.0"],
+ links: %{"GitHub" => "https://github.com/kennyballou/ex_prometheus_io",
+ "Prometheus Project" => "http://prometheus.io"},
+ files: ~w(mix.exs README.md LICENSE lib)]
+ end
end