Packages

Descriptive Statistics is a library that allows you to compute simple descriptive statistics in Elixir. Inspired by https://github.com/thirtysixthspan/descriptive_statistics.

Current section

Files

Jump to

mix.exs

defmodule DescriptiveStatistics.Mixfile do
use Mix.Project
def project do
[ app: :descriptive_statistics,
version: "0.0.2",
elixir: "> 0.13.2",
deps: deps(),
package: [
maintainers: ["Piotr Usewicz", "Victor Martinez"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/pusewicz/descriptive_statistics" }
],
description: "Descriptive Statistics is a library that allows you to compute simple descriptive statistics in Elixir. Inspired by https://github.com/thirtysixthspan/descriptive_statistics."
]
end
def application do
[]
end
def deps do
[
{:ex_doc, ">= 0.0.0", only: :dev}
]
end
end