-
Notifications
You must be signed in to change notification settings - Fork 14
/
mix.exs
41 lines (37 loc) · 1 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
defmodule ExAzure.Mixfile do
use Mix.Project
def project do
[
app: :ex_azure,
version: "0.1.1",
elixir: "~> 1.2 or ~> 1.3",
description: "Azure wrapper for Elixir using :erlazure",
package: package(),
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
deps: deps(),
]
end
def application do
[applications: [:erlazure],
mod: {ExAzure, []}]
end
defp deps do
[
{:erlazure, github: "gullitmiranda/erlazure", manager: :rebar},
{:ex_doc , "~> 0.11.5", only: [:dev, :test]},
{:earmark , "~> 0.2.1" , only: [:dev, :test]},
]
end
defp package do
[
files: ["lib", "mix.exs", "README*", "LICENSE*"],
maintainers: ["Gullit Miranda <gullitmiranda@gmail.com>"],
licenses: ["MIT"],
links: %{
"GitHub" => "https://github.com/gullitmiranda/ex_azure",
"Docs" => "https://hexdocs.pm/ex_azure",
}
]
end
end