Packages

The ExAlgebra library is a collection of functions that are commonly used in linear algebra.

Current section

Files

Jump to
exalgebra mix.exs
Raw

mix.exs

defmodule ExAlgebra.Mixfile do
use Mix.Project
def project do
[app: :exalgebra,
version: "0.0.5",
elixir: "~> 1.2",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
deps: deps,
description: description,
package: package]
end
def application do
[applications: [:logger]]
end
defp deps do
[{:eye_drops, "~> 1.2", only: [:dev]},
{:credo, "~> 0.3", only: [:dev, :test]},
{:earmark, "~> 0.1", only: :dev},
{:ex_doc, "~> 0.11", only: :dev}]
end
defp description do
"""
The ExAlgebra library is a collection of functions that are commonly
used in linear algebra.
"""
end
defp package do
[# These are the default files included in the package
files: ["lib", "priv", "mix.exs", "README*", "readme*", "LICENSE*", "license*"],
maintainers: ["Leigh Shepperson"],
licenses: ["Apache 2.0"],
links: %{"GitHub" => "https://github.com/leighshepperson/exalgebra",
"Docs" => "https://github.com/leighshepperson/exalgebra/"}]
end
end