-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmix.exs
More file actions
38 lines (34 loc) · 910 Bytes
/
mix.exs
File metadata and controls
38 lines (34 loc) · 910 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
defmodule ExSozu.Mixfile do
use Mix.Project
def project do
[
app: :exsozu,
version: "0.4.0",
elixir: "~> 1.4",
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
deps: deps(),
package: package(),
description: "A resilient Elixir client for the Sōzu HTTP reverse proxy.",
source_url: "https://github.com/evuez/exsozu",
homepage_url: "https://github.com/evuez/exsozu"
]
end
def application do
[extra_applications: [:logger], mod: {ExSozu.Application, []}]
end
defp deps do
[
{:poison, "~> 3.1"},
{:credo, "~> 0.8", only: [:dev, :test], runtime: false},
{:ex_doc, ">= 0.0.0", only: :dev}
]
end
defp package do
[
licenses: ["MIT"],
maintainers: ["evuez <helloevuez@gmail.com>"],
links: %{"GitHub" => "https://github.com/evuez/exsozu"}
]
end
end