Packages

A collection of useful mathematical functions in Elixir with a slant towards statistics, linear algebra and machine learning

Current section

Files

Jump to
numerix mix.exs
Raw

mix.exs

defmodule Numerix.Mixfile do
use Mix.Project
def project do
[
app: :numerix,
name: "Numerix",
description:
"A collection of useful mathematical functions in Elixir with a slant towards statistics, linear algebra and machine learning",
version: "0.5.1",
elixir: "~> 1.5",
source_url: "https://github.com/safwank/Numerix",
deps: deps(),
package: package(),
test_coverage: [tool: ExCoveralls],
preferred_cli_env: [
credo: :test,
"coveralls.html": :test,
commit: :test
],
aliases: [
commit: ["dialyzer", "credo --strict", "coveralls.html --trace"]
],
default_task: "commit"
]
end
def application do
[applications: [:logger]]
end
defp deps do
[
{:flow, "~> 0.13"},
{:credo, "~> 0.9.0-rc8", only: [:dev, :test]},
{:dialyxir, "~> 0.5", only: [:dev, :test]},
{:excoveralls, "~> 0.8", only: :test},
{:excheck, "~> 0.5", only: :test},
{:triq, github: "triqng/triq", only: :test},
{:stream_data, "~> 0.4", only: :test},
{:ex_doc, "~> 0.18", only: :dev},
{:earmark, "~> 1.2", only: :dev}
]
end
defp package do
[
maintainers: ["Safwan Kamarrudin"],
licenses: ["MIT"],
links: %{github: "https://github.com/safwank/Numerix"}
]
end
end