defmodule Dicks.Mixfile do use Mix.Project def project do [app: :dicks, version: "0.0.2", elixir: "~> 1.0", description: description, package: package, escript: escript, deps: deps] end # Configuration for the OTP application # # Type `mix help compile.app` for more information defp escript do [main_module: Dicks] end defp application do [applications: [:logger, :httpoison]] end defp description do """ An Elixir client for the Dick As A Service platform http://dicks-api.herokuapp.com """ end defp package do [ files: ["lib", "mix.exs", "README.md", "LICENCE"], contributors: ["Anne-Gwenn Kettunen"], licenses: ["MIT"], links: %{"GitHub" => "https://github.com/Annwenn/DicksEx",}] end # Dependencies can be Hex packages: # # {:mydep, "~> 0.3.0"} # # Or git/path repositories: # # {:mydep, git: "https://github.com/elixir-lang/mydep.git", tag: "0.1.0"} # # Type `mix help deps` for more examples and options defp deps do [{:exjsx, "~> 3.1.0"}, {:httpoison, "~> 0.5.0"}] end end