-
Notifications
You must be signed in to change notification settings - Fork 1
/
mix.exs
49 lines (42 loc) · 995 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
46
47
48
49
defmodule ExSlp.Mixfile do
use Mix.Project
def project do
[
app: :ex_slp,
version: "0.1.2",
elixir: "~> 1.2",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
deps: deps(),
description: description(),
package: package(),
]
end
def application do
[
applications: [:logger]
]
end
defp deps do
[
{ :ex_doc, "~> 0.11" },
{ :earmark, ">= 0.0.0" },
]
end
defp description do
"""
Zero-config local network Elixir/Erlang node discovery lib.
Allows an Elixir node to register itself as a local netowrk service and discover the orher registered services.
"""
end
defp package do
[
files: ~w/lib mix.exs README* LICENSE*/,
licenses: ~w/MIT/,
maintainers: [ "Oleg S" ],
links: %{
"GitHub" => "https://github.com/4pcbr/ex_slp_tk",
},
]
end
end