defmodule ElixirMake.Mixfile do use Mix.Project def project do [ app: :elixir_make, version: "0.5.2", elixir: "~> 1.1", build_embedded: Mix.env() == :prod, description: "A Make compiler for Mix", package: package(), deps: [] ] end # Configuration for the OTP application # # Type "mix help compile.app" for more information def application do [applications: []] end defp package do %{ licenses: ["Apache 2"], links: %{"GitHub" => "https://github.com/elixir-lang/elixir_make"}, maintainers: ["Andrea Leopardi", "José Valim"] } end end