From 16c4673ce1b7884f410e4313e360af9fcacc74a2 Mon Sep 17 00:00:00 2001 From: Eduardo Gurgel Date: Sun, 3 Aug 2014 16:13:23 +1200 Subject: [PATCH] Add hex package definition And bump version --- mix.exs | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/mix.exs b/mix.exs index f76d6dd..d39f206 100644 --- a/mix.exs +++ b/mix.exs @@ -1,11 +1,17 @@ defmodule Httparrot.Mixfile do use Mix.Project + @description """ + HTTP Request & Response Server. An incomplete clone of http://httpbin.org + """ + def project do [ app: :httparrot, - version: "0.3.0", - name: "HTTParrot", + version: "0.3.1", elixir: "~> 0.14.1 or ~> 0.15.0", + name: "HTTParrot", + description: @description, + package: package, deps: deps ] end @@ -23,4 +29,12 @@ defmodule Httparrot.Mixfile do {:jsex, "~> 2.0"}, {:meck, github: "eproxus/meck", tag: "0.8.2", only: :test } ] end + + defp package do + [ contributors: ["Eduardo Gurgel Pinho"], + licenses: ["MIT"], + links: [ { "Github", "https://github.com/edgurgel/httparrot" }, + { "HTTParrot", "http://httparrot.herokuapp.com" }, + { "httpbin", "http://httpbin.org" } ] ] + end end