defmodule Gandi.Mixfile do use Mix.Project def project do [app: :gandi, version: "0.1.2", elixir: "~> 1.5", build_embedded: Mix.env == :prod, start_permanent: Mix.env == :prod, package: package(), deps: deps] end def application do [applications: [:logger, :httpoison]] end defp deps do [{:erlsom, "~> 1.4"}, {:xmlrpc, "~> 1.0"}, {:poison, "~> 3.1"}, {:ex_doc, ">= 0.0.0", only: :dev}, {:httpoison, "~> 0.11.0"} ] end defp package do [ description: "Gandi Access over Elixir", name: :gandi, files: ["lib", "mix.exs", "README*", "LICENSE*"], maintainers: ["Mahesh Reddy","Anwesh Reddy","John Ankanna"], licenses: ["MIT"], links: %{"GitHub" => "https://github.com/ahamtech/elixir-gandi"}] end end