defmodule Monk.Mixfile do use Mix.Project def project do [app: :monk, version: "0.1.2", elixir: "~> 1.0", description: "Monk helps to distinguish good from evil with an simple ok/error monad", package: [ contributors: ["Ludovic Demblans"], licenses: ["MIT"], links: %{ "GitHub" => "https://github.com/niahoo/monk", "Hex Docs" => "http://hexdocs.pm/monk/overview.html" } ], deps: deps] end def application do [] end defp deps do [ {:dogma, git: "https://github.com/lpil/dogma.git", ref: "HEAD", only: :dev}, {:ex_doc, "~> 0.8.4", only: :dev}, {:earmark, ">= 0.0.0", only: :dev}, ] end end