-
Notifications
You must be signed in to change notification settings - Fork 1
/
mix.exs
47 lines (42 loc) · 1.02 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
42
43
44
45
46
47
defmodule Quack.MixProject do
use Mix.Project
def project do
[
app: :quack,
version: "0.1.1",
elixir: "~> 1.7",
start_permanent: Mix.env() == :prod,
deps: deps(),
test_coverage: [tool: ExCoveralls],
description: description(),
package: package(),
name: "Quack",
source_url: "https://github.com/azohra/Quack"
]
end
def application do
[
mod: {Quack, []},
extra_applications: [:logger]
]
end
defp deps do
[
{:tesla, "~> 1.2.0"},
{:credo, "~> 0.10.2", only: [:dev, :test], runtime: false},
{:excoveralls, "~> 0.10.2", only: [:test, :dev]},
{:poison, ">= 1.0.0"},
{:ex_doc, ">= 0.0.0", only: :dev}
]
end
defp description() do
"A simple, yet beautiful, Elixir Logger backend for Slack."
end
defp package() do
[
files: ~w(lib .formatter.exs mix.exs README.md LICENSE.md CHANGELOG.md),
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/azohra/Quack"}
]
end
end