From 5960bd16f2695683076da6ec259ea82cae27add2 Mon Sep 17 00:00:00 2001 From: kballou Date: Tue, 15 Mar 2016 16:45:02 -0600 Subject: Add missing project attributes for hex publication --- mix.exs | 14 ++++++++++++++ 1 file changed, 14 insertions(+) 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 -- cgit v1.2.1