-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathmix.exs
More file actions
43 lines (36 loc) · 864 Bytes
/
mix.exs
File metadata and controls
43 lines (36 loc) · 864 Bytes
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
defmodule Docker.Mixfile do
use Mix.Project
@version File.read!("VERSION") |> String.trim()
def project do
[app: :docker,
version: @version,
elixir: "~> 1.6",
deps: deps(),
# Hex
description: description(),
package: package()]
end
def application do
[extra_applications: [:logger]]
end
defp deps do
[
{:jason, ">= 1.0.0"},
{:tesla, ">= 1.4.0"},
{:hackney, "~> 1.17"},
{:earmark, "~> 1.4", only: :dev},
{:ex_doc, "~> 0.25", only: :dev},
]
end
defp description do
"""
Elixir client for the Docker Remote API.
"""
end
defp package do
[contributors: ["William Huba"],
licenses: ["Apache 2.0"],
links: %{"GitHub" => "https://github.com/hexedpackets/docker-elixir"},
files: ~w(mix.exs README.md LICENSE VERSION config lib)]
end
end