Current section
Files
Jump to
Current section
Files
mix.exs
defmodule Toolshed.MixProject do
use Mix.Project
def project do
[
app: :toolshed,
version: "0.2.6",
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]]
]
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