Packages

Data structure with circular linked-list behaviour in Elixir

Current section

Files

Jump to
cll mix.exs
Raw

mix.exs

defmodule CLL.MixProject do
use Mix.Project
def project do
[
app: :cll,
version: "0.1.0",
elixir: "~> 1.8",
description: description(),
package: package(),
start_permanent: Mix.env() == :prod,
dialyzer: [plt_add_apps: [:poison, :mix]],
deps: deps()
]
end
defp description do
"""
Data structure with circular linked-list behaviour in Elixir
"""
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:propcheck, "~> 1.1", only: :test},
{:dialyxir, "~> 0.5", only: [:dev], runtime: false},
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false}
]
end
defp package do
[
files: ["lib/cll.ex", "mix.exs", "README*"],
maintainers: ["Powell Kinney"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/pkinney/topo"}
]
end
end