-
Notifications
You must be signed in to change notification settings - Fork 27
/
mix.exs
43 lines (37 loc) · 781 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
defmodule Ex2ms.Mixfile do
use Mix.Project
@version "1.7.0"
@github_url "https://github.com/ericmj/ex2ms"
def project do
[
app: :ex2ms,
version: @version,
elixir: "~> 1.7",
deps: deps(),
docs: docs(),
description: "Translates Elixir functions to match specifications for use with `ets`.",
package: package()
]
end
def application do
[]
end
defp deps do
[{:ex_doc, ">= 0.0.0", only: :dev}]
end
defp docs do
[
source_ref: "v#{@version}",
source_url: @github_url,
main: "readme",
extras: ["README.md"]
]
end
defp package do
[
maintainers: ["Eric Meadows-Jönsson"],
licenses: ["Apache-2.0"],
links: %{"GitHub" => @github_url}
]
end
end