diff --git a/mix.exs b/mix.exs index 1fc5b69..65fcc87 100644 --- a/mix.exs +++ b/mix.exs @@ -1,26 +1,26 @@ defmodule ExIrc.Mixfile do use Mix.Project def project do [ app: :exirc, version: "0.8.3", elixir: "~> 1.0.0", description: "An IRC client library for Elixir.", package: package, deps: [] ] end # Configuration for the OTP application def application do [mod: {ExIrc.App, []}] end defp package do [ files: ["lib", "mix.exs", "README.md", "LICENSE"], contributors: ["Paul Schoenfelder"], licenses: ["MIT"], - links: [ { "GitHub", "https://github.com/bitwalker/exirc" }, - { "Home Page", "http://bitwalker.org/exirc"} ] ] + links: %{ "GitHub" => "https://github.com/bitwalker/exirc", + "Home Page" => "http://bitwalker.org/exirc"} ] end end