Packages

Library for working with Information Theory Algorithms

Current section

Files

Jump to
shannon mix.exs
Raw

mix.exs

defmodule Shannon.MixProject do
use Mix.Project
def project do
[
app: :shannon,
version: "0.0.1",
start_permanent: Mix.env() == :prod,
build_embedded: Mix.env() == :prod,
elixir: "~> 1.20",
description: description(),
package: package(),
deps: deps(),
name: "Shannon"
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:ex_doc, "~> 0.40.3", only: :dev, runtime: false}
]
end
defp description do
"Library for working with Information Theory Algorithms"
end
defp package do
[
files:
~w(lib .formatter.exs mix.exs README*),
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/TheEndIsNear/shannon"}
]
end
end