From 84e0e9b1f3b7e7ae37fd15ca1a13348a1ae61e10 Mon Sep 17 00:00:00 2001 From: simonewebdesign Date: Wed, 17 Jun 2015 15:44:41 -0700 Subject: [PATCH] Update mix.exs --- mix.exs | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/mix.exs b/mix.exs index 2a7fb56..5dc216d 100644 --- a/mix.exs +++ b/mix.exs @@ -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 @@ -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