forked from dashbitco/flow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
41 lines (36 loc) · 814 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
defmodule Flow.Mixfile do
use Mix.Project
@version "1.0.0"
def project do
[
app: :flow,
version: @version,
elixir: "~> 1.5",
package: package(),
description: "Computational parallel flows for Elixir",
start_permanent: Mix.env() == :prod,
deps: deps(),
docs: [
main: "Flow",
source_ref: "v#{@version}",
source_url: "https://github.com/dashbitco/flow"
]
]
end
def application do
[applications: [:logger, :gen_stage]]
end
defp deps do
[
{:gen_stage, "~> 1.0"},
{:ex_doc, "~> 0.19", only: :docs}
]
end
defp package do
%{
licenses: ["Apache 2"],
maintainers: ["José Valim", "James Fish"],
links: %{"GitHub" => "https://github.com/dashbitco/flow"}
}
end
end