defmodule Temp.Mixfile do use Mix.Project def project do [app: :temp, version: "0.2.2", elixir: "~> 1.0", name: "temp", source_url: "http://github.com/tuvistavie/elixir-temp", homepage_url: "http://github.com/tuvistavie/elixir-temp", package: package, description: description, build_embedded: Mix.env == :prod, start_permanent: Mix.env == :prod, deps: deps] end def application do [applications: [:logger]] end defp deps do [{:earmark, "~> 0.1", only: :dev}, {:ex_doc, "~> 0.7", only: :dev}] end defp description do "An Elixir module to easily create and use temporary files and directories." end defp package do [ files: ["lib", "mix.exs", "README.md", "LICENSE"], contributors: ["Daniel Perez"], licenses: ["MIT"], links: %{"GitHub" => "https://github.com/tuvistavie/elixir-temp"} ] end end