-
Notifications
You must be signed in to change notification settings - Fork 1
/
mix.exs
69 lines (63 loc) · 1.51 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
60
61
62
63
64
65
66
67
68
69
defmodule Flo.MixProject do
use Mix.Project
def project do
[
app: :flo,
deps: deps(),
docs: docs(),
version: "0.2.1",
elixir: "~> 1.11",
package: package(),
description: description(),
start_permanent: Mix.env() == :prod
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger],
mod: {Flo.Application, []}
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:jason, "~> 1.2"},
{:solid, "~> 0.8"},
{:construct, "~> 2.1"},
{:httpoison, "~> 1.8"},
{:libgraph, "~> 0.13.3"},
{:accessible, "~> 0.3.0"},
{:ex_doc, "~> 0.24", only: :dev, runtime: false},
{:luerl, "~> 0.4.0"}
]
end
defp docs do
[
main: "readme",
extras: ["README.md"],
canonical: "http://hexdocs.pm/flo",
source_url: "https://github.com/factor18/flo",
groups_for_modules: [
components: [
Flo.Core.Component.Log,
Flo.Core.Component.Delay
],
triggers: [
Flo.Core.Trigger.Interval
]
]
]
end
defp package() do
[
maintainers: ["Sarat Chandra Balla"],
files: ~w(lib .formatter.exs mix.exs README* LICENSE*),
links: %{"GitHub" => "https://github.com/factor18/flo"},
licenses: ["Mozilla Public License, version 2.0 (\"MPL\")"]
]
end
defp description do
"Extensible workflow orchestration framework"
end
end