-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
45 lines (39 loc) · 986 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
43
44
45
defmodule Arf.Mixfile do
use Mix.Project
def project do
[
app: :arf,
version: "0.0.1",
elixir: "~> 1.10",
desription: description,
package: package,
deps: deps,
test_coverage: [tool: ExCoveralls]
]
end
def application do
[applications: [:logger]]
end
defp deps do
[
{ :statistics, "~> 0.6.2" },
{ :excoveralls, "~> 0.3", only: [:dev, :test] },
{ :dialyze, "~> 0.2.1", only: [:dev, :test] },
{ :inch_ex, only: [:docs] },
]
end
defp description do
"Implementation of an Adaptive Range Filter"
end
defp package do
[
files: ~w(lib test mix.exs README.md LICENSE.md),
contributors: ["Brian Gianforcaro"],
licenses: ["BSD"],
links: %{
"GitHub" => "https://github.com/bgianfo/arf",
"Theoretical Description Of The Data Structure" => "http://www.vldb.org/pvldb/vol6/p1714-kossmann.pdf"
}
]
end
end