forked from fracek/balanced_tree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
38 lines (32 loc) · 812 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
defmodule BalancedTree.Mixfile do
use Mix.Project
@version "0.2.1"
@github "https://github.com/fracek/balanced_tree"
def project do
[app: :balanced_tree,
version: @version,
elixir: "~> 1.5",
deps: deps(),
name: "BalancedTree",
source_url: @github,
docs: [source_ref: "v#{@version}", main: "readme", extras: ["README.md"]],
description: description(),
package: package()]
end
def application do
[]
end
defp deps do
[{:ex_doc, ">= 0.0.0", only: :dev},
{:earmark, ">= 0.0.0", only: :dev},
{:stream_data, "~> 0.1", only: :test}]
end
defp description() do
"AA Tree implementation."
end
defp package() do
[maintainers: ["Francesco Ceccon"],
licenses: ["Apache 2.0"],
links: %{"GitHub" => @github}]
end
end