From 4429f8e1f54956eef00c3aa271aae891a926de27 Mon Sep 17 00:00:00 2001 From: Max Schnur Date: Thu, 14 Jan 2016 08:29:11 -0500 Subject: [PATCH] Add package info. --- mix.exs | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/mix.exs b/mix.exs index 5d8fa41..cbaf808 100644 --- a/mix.exs +++ b/mix.exs @@ -5,6 +5,8 @@ defmodule ElixirNsq.Mixfile do [app: :elixir_nsq, version: "0.0.1", elixir: "~> 1.1", + description: description, + package: package, build_embedded: Mix.env == :prod, start_permanent: Mix.env == :prod, deps: deps] @@ -41,4 +43,22 @@ defmodule ElixirNsq.Mixfile do {:http_server, github: "parroty/http_server", tag: "09ea61f42097483d3e70749be30490004a5df38f", only: :test}, ] end + + defp description do + """ + A client library for NSQ, `elixir_nsq` aims to be complete, easy to use, + and well tested. Developed at Wistia (http://wistia.com). + """ + end + + defp package do + [ + files: ["lib", "mix.exs", "README*", "readme*", "LICENSE*", "license*"], + maintainers: ["Max Schnur (max@wistia.com)"], + licenses: ["MIT"], + links: %{ + "GitHub" => "https://github.com/wistia/elixir_nsq" + }, + ] + end end