Skip to content

Commit

Permalink
Add package info.
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxPower15 committed Jan 14, 2016
1 parent 336b000 commit 4429f8e
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down Expand Up @@ -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 ([email protected])"],
licenses: ["MIT"],
links: %{
"GitHub" => "https://github.com/wistia/elixir_nsq"
},
]
end
end

0 comments on commit 4429f8e

Please sign in to comment.