Skip to content

Commit

Permalink
Update mix.exs
Browse files Browse the repository at this point in the history
  • Loading branch information
simonewebdesign committed Jun 17, 2015
1 parent d24b09a commit 84e0e9b
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions mix.exs
Expand Up @@ -4,12 +4,12 @@ defmodule PubSub.Mixfile do
def project do
[app: :pubsub,
version: "0.0.1",
description: "Publish-Subscribe utility",
elixir: "~> 1.0",
description: "Publish-Subscribe utility",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
deps: deps,
links: %{:github => 'https://github.com/simonewebdesign/elixir_pubsub'}]
package: package,
deps: deps]
end

# Configuration for the OTP application
Expand All @@ -31,4 +31,10 @@ defmodule PubSub.Mixfile do
defp deps do
[]
end

defp package do
[# These are the default files included in the package
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/simonewebdesign/elixir_pubsub"}]
end
end

0 comments on commit 84e0e9b

Please sign in to comment.