-
Notifications
You must be signed in to change notification settings - Fork 3
/
mix.exs
45 lines (40 loc) · 959 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 Nordigen.MixProject do
use Mix.Project
def project do
[
app: :nordigen,
version: "0.1.2",
elixir: "~> 1.13",
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
description: description(),
package: package(),
deps: deps(),
source_url: "https://github.com/vlarok/nordigen"
]
end
def application do
[
extra_applications: [:logger, :httpoison]
]
end
defp deps do
[
{:httpoison, "~> 2.0"},
{:elixir_uuid, "~> 1.2"},
{:poison, "~> 5.0"},
{:ex_doc, "~> 0.13", only: :dev, runtime: false}
]
end
defp description() do
"Unofficial Nordigen Client Library"
end
defp package() do
[
files: ["lib", "mix.exs", "README.md", "LICENSE.md"],
maintainers: ["Vladimir Rokovanov"],
licenses: ["Apache-2.0"],
links: %{"GitHub" => "https://github.com/vlarok/nordigen"}
]
end
end