defmodule Toolshed.MixProject do use Mix.Project def project do [ app: :toolshed, version: "0.2.9", elixir: "~> 1.7", start_permanent: Mix.env() == :prod, deps: deps(), docs: [extras: ["README.md"], main: "readme"], description: description(), package: package(), dialyzer: [plt_add_apps: [:iex, :nerves_runtime, :inets]] ] end def application do [] end defp deps do [ {:nerves_runtime, "~> 0.8", optional: true}, {:ex_doc, "~> 0.19", only: [:dev, :test], runtime: false}, {:dialyxir, "~> 1.0.0-rc.4", only: [:dev, :test], runtime: false} ] end defp description do "A toolshed of IEx helpers" end defp package do [ licenses: ["Apache-2.0"], links: %{"GitHub" => "https://github.com/fhunleth/toolshed"} ] end end