-
Notifications
You must be signed in to change notification settings - Fork 3
/
mix.exs
59 lines (53 loc) · 1.17 KB
/
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
defmodule BiMap.Mixfile do
use Mix.Project
@version "1.3.0"
@github "https://github.com/mkaput/elixir-bimap"
def project do
[
app: :bimap,
name: "BiMap",
description: description(),
version: @version,
elixir: "~> 1.3",
source_url: @github,
docs: [
source_ref: "v#{@version}",
main: "readme",
extras: ~w(README.md)
],
deps: deps(),
package: package()
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
# Development dependencies
{:ex_doc, "~> 0.31", only: :dev, runtime: false},
{:stream_data, "~> 0.5.0", only: [:dev, :test]}
]
end
defp description() do
"Elixir implementation of bidirectional map and multimap"
end
defp package() do
[
files: ~w(
lib
mix.exs
README.md
LICENSE.txt
),
maintainers: ["Marek Kaput <marek.kaput@outlook.com>"],
licenses: ["MIT"],
links: %{
"GitHub" => @github,
"Changelog" => "#{@github}/releases"
}
]
end
end