Packages

Matrix is a linear algebra library for manipulating dense matrices. Its primary design goal is ease of use.

Current section

Files

Jump to
matrix mix.exs
Raw

mix.exs

defmodule Matrix.Mixfile do
use Mix.Project
def project do
[app: :matrix,
version: "0.3.2",
description: description,
package: package,
elixir: "~> 1.1",
deps: deps,
docs: [extras: []]]
end
# Configuration for the OTP application
#
# Type "mix help compile.app" for more information
def application do
[applications: [:logger, :exprintf]]
end
defp deps do
[{:ex_doc, "~> 0.14", only: :dev},
{:exprintf, "~> 0.1"}]
end
defp description do
"""
Matrix is a linear algebra library for manipulating dense matrices. Its
primary design goal is ease of use.
"""
end
defp package do
[# These are the default files included in the package
maintainers: ["Tom Krauss"],
licenses: ["Apache 2.0"],
links: %{"GitHub" => "https://github.com/twist-vector/elixir-matrix.git",
"Docs" => "http://http://hexdocs.pm/matrix"}]
end
end