-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
36 lines (32 loc) · 815 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 NodeRegistry.MixProject do
use Mix.Project
def project do
[
app: :node_registry,
version: "0.2.0",
elixir: "~> 1.14",
start_permanent: Mix.env() == :prod,
description: description(),
package: package(),
source_url: "https://github.com/antonmi/node_registry",
deps: deps()
]
end
defp description do
"A simple node registry built on top of the Erlang :global module"
end
defp package do
[
files: ~w(lib mix.exs README.md),
maintainers: ["Anton Mishchuk"],
licenses: ["MIT"],
links: %{"github" => "https://github.com/antonmi/node_registry"}
]
end
defp deps do
[
{:dialyxir, "~> 1.0", only: [:dev], runtime: false},
{:ex_doc, "~> 0.29", only: :dev, runtime: false}
]
end
end