Packages

A struct based implementation of a pure Elixir ordered n-ary tree

Current section

Files

Jump to
Raw

mix.exs

defmodule OrderedNaryTree.MixProject do
use Mix.Project
def project do
[
app: :ordered_nary_tree,
version: "0.0.2",
elixir: "~> 1.11",
package: package(),
start_permanent: Mix.env() == :prod,
description: description(),
deps: deps()
]
end
def application do
[
extra_applications: [:logger]
]
end
defp deps do
[
{:ex_doc, ">= 0.0.0", only: :dev},
{:mix_test_watch, "~> 1.0", only: :dev, runtime: false},
{:dialyxir, "~> 1.0", only: :dev, runtime: false},
{:excoveralls, "~> 0.10", only: :test}
]
end
defp description do
"A struct based implementation of a pure Elixir ordered n-ary tree"
end
defp package do
%{
licenses: ["MIT"],
maintainers: ["Alex Kwiatkowski"],
links: %{"GitHub" => "https://github.com/fremantle-industries/ordered_nary_tree"}
}
end
end