-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathmix.exs
36 lines (32 loc) · 771 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
defmodule SortedSet.Mixfile do
use Mix.Project
def project do
[app: :sorted_set,
version: "1.1.0",
source_url: "https://github.com/SenecaSystems/sorted_set",
elixir: "~> 1.0",
description: "SortedSet implementation for Elixir",
licenses: ["MIT"],
deps: deps,
package: package
]
end
def application do
[applications: [:logger]]
end
defp deps do
[
{:red_black_tree, "~> 1.2"},
{:earmark, "~> 0.1", only: :dev},
{:ex_doc, "~> 0.7", only: :dev}
]
end
defp package do
[
files: ["lib", "mix.exs", "README.md", "LICENSE"],
contributors: ["Seneca Systems"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/SenecaSystems/sorted_set"}
]
end
end