summaryrefslogtreecommitdiff
path: root/mix.exs
diff options
context:
space:
mode:
authorRodrigo Coutinho <rodrigo.coutinho@locaweb.com.br>2016-10-06 16:15:18 -0300
committerRodrigo Coutinho <rodrigo.coutinho@locaweb.com.br>2016-10-06 16:15:18 -0300
commit0e11298372ccdc8dbaaf47516d4372d5a105886e (patch)
treeb0a261f0cf53e23b592f440183e731f275251251 /mix.exs
parentMerge pull request #5 from digaoddc/master (diff)
Package information
Diffstat (limited to '')
-rw-r--r--mix.exs15
1 files changed, 14 insertions, 1 deletions
diff --git a/mix.exs b/mix.exs
index b8ac847..0b05704 100644
--- a/mix.exs
+++ b/mix.exs
@@ -3,7 +3,7 @@ defmodule PowerDNSex.Mixfile do
def project do
[app: :powerdnsex,
- version: "0.1.0",
+ version: "0.0.1",
elixir: "~> 1.3",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
@@ -19,4 +19,17 @@ defmodule PowerDNSex.Mixfile do
{:poison, "~> 2.2"},
{:exvcr, "~> 0.8.0", only: :test}]
end
+
+ defp description do
+ """
+ A Client to integrate with PowerDNS API version 4
+ """
+ end
+
+ defp package do
+ [ maintainers: ["Rodrigo Coutinho"],
+ licenses: ["MIT"],
+ links: %{"GitHub" => "https://github.com/digaoddc/power_dnsex"}
+ ]
+ end
end