-
Notifications
You must be signed in to change notification settings - Fork 6
/
mix.exs
45 lines (40 loc) · 922 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
defmodule Alf.MixProject do
use Mix.Project
def project do
[
app: :alf,
version: "0.12.1",
elixir: "~> 1.15",
start_permanent: Mix.env() == :prod,
description: description(),
package: package(),
deps: deps(),
source_url: "https://github.com/antonmi/alf"
]
end
def application do
[
mod: {ALF.Application, []},
extra_applications: [:logger]
]
end
defp deps do
[
{:gen_stage, "~> 1.2"},
{:telemetry, "~> 1.2"},
{:dialyxir, "~> 1.0", only: [:dev], runtime: false},
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false}
]
end
defp description do
"Flow-based Application Layer Framework"
end
defp package do
[
files: ~w(lib mix.exs README.md),
maintainers: ["Anton Mishchuk"],
licenses: ["MIT"],
links: %{"github" => "https://github.com/antonmi/alf"}
]
end
end