aboutsummaryrefslogtreecommitdiff
path: root/mix.exs
diff options
context:
space:
mode:
authorMentor Ágil <mentoragil@gmail.com>2015-05-12 23:52:51 -0300
committerMentor Ágil <mentoragil@gmail.com>2015-05-12 23:52:51 -0300
commit68d6b62493e118667588a04260dac67a3ae4ad0b (patch)
tree2f2179456151cc60c6481b363c22186b7ff96d3b /mix.exs
parent765438c4c2c300f84364b978a0b199a0e69c4e80 (diff)
downloadmailchimp-68d6b62493e118667588a04260dac67a3ae4ad0b.tar.gz
mailchimp-68d6b62493e118667588a04260dac67a3ae4ad0b.tar.xz
added functions to manipulate lists
Diffstat (limited to 'mix.exs')
-rw-r--r--mix.exs19
1 files changed, 18 insertions, 1 deletions
diff --git a/mix.exs b/mix.exs
index 7111fc9..4b9ffc4 100644
--- a/mix.exs
+++ b/mix.exs
@@ -5,15 +5,32 @@ defmodule Mailchimp.Mixfile do
[app: :mailchimp,
version: "0.0.1",
elixir: "~> 1.0",
- deps: deps]
+ description: description,
+ package: package,
+ source_url: "https://github.com/duartejc/mailchimp",
+ deps: deps,
+ docs: [readme: "README.md", main: "README"]]
end
def application do
[applications: [:logger, :httpoison]]
end
+ defp description do
+ """
+ A basic Elixir wrapper for version 3 of the MailChimp API.
+ """
+ end
+
defp deps do
[{:httpoison, "~> 0.6"},
{:poison, "~> 1.4.0"}]
end
+
+ defp package do
+ [files: ["lib", "mix.exs", "README.md", "LICENSE"],
+ contributors: ["Jean Duarte"],
+ licenses: ["MIT"],
+ links: %{"GitHub" => "https://github.com/duartejc/mailchimp"}]
+ end
end