-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
42 lines (37 loc) · 978 Bytes
/
mix.exs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
defmodule Spacesaving.Mixfile do
use Mix.Project
def project do
[app: :spacesaving,
version: "0.0.3",
elixir: "~> 1.2",
description: description,
package: package,
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
deps: deps]
end
def application do
[applications: [:logger]]
end
defp description do
"""
stream count distinct element estimation using the "space saving"
algorithm.
"""
end
defp deps do
[
{:ex_doc, github: "elixir-lang/ex_doc"},
{:earmark, ">= 0.0.0"},
{:dialyze, "~> 0.2.0"}
]
end
defp package do
[# These are the default files included in the package
files: ["lib", "mix.exs", "README*", "readme*", "LICENSE*", "license*"],
maintainers: ["Chris Duranti"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/rozap/spacesaving",
"Docs" => "http://hexdocs.pm/spacesaving"}]
end
end