summaryrefslogtreecommitdiff
path: root/mix.exs
diff options
context:
space:
mode:
Diffstat (limited to 'mix.exs')
-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