defmodule SimplexFormat.MixProject do use Mix.Project def project do [ app: :simplex_format, version: "0.4.0", elixir: "~> 1.14", description: description(), start_permanent: Mix.env() == :prod, deps: deps(), package: package(), name: "simplex_format", source_url: "https://github.com/breakroom/simplex_format" ] end defp description do "Converts plain text to formatted HTML, including automatically linking URLs" end defp package do [ licenses: ["MIT"], links: %{"GitHub" => "https://github.com/breakroom/simplex_format"} ] end def application do [ extra_applications: [:logger] ] end defp deps do [ {:phoenix_html, "~> 2.11 or ~> 3.0 or ~> 4.0"}, {:phoenix_html_helpers, "~> 1.0"}, {:ex_doc, "~> 0.19", only: :dev, runtime: false} ] end end