defmodule Mailex.MixProject do use Mix.Project def project do [ app: :mail_catchex, version: "0.1.0", elixir: "~> 1.9", start_permanent: Mix.env() == :prod, deps: deps(), description: description(), package: package() ] end # Run "mix help compile.app" to learn about applications. def application do [] end # Run "mix help deps" to learn about dependencies. defp deps do [ # {:dep_from_hexpm, "~> 0.3.0"}, # {:dep_from_git, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"} {:gen_smtp, "~> 0.15.0"}, {:plug_cowboy, "~> 2.0"}, {:ex_doc, ">= 0.0.0", only: :dev, runtime: false} ] end defp description() do "A super-simpler SMTP and HTTP server to catch and show all received emails." end defp package() do [ # These are the default files included in the package files: ~w(lib priv .formatter.exs mix.exs README*), licenses: ["Apache-2.0"], links: %{"GitHub" => "https://github.com/vfsoraki/mail_catchex"} ] end end