-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathmix.exs
40 lines (35 loc) · 790 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
defmodule Signaturex.Mixfile do
use Mix.Project
@description """
Simple key/secret based authentication for APIs
"""
def project do
[
app: :signaturex,
name: "Signaturex",
description: @description,
elixir: "~> 1.16",
version: "1.5.0",
package: package(),
deps: deps(),
source_url: "https://github.com/edgurgel/signaturex"
]
end
def application do
[extra_applications: [:crypto]]
end
defp deps do
[
{:meck, "~> 0.9.2", only: :test},
{:earmark, "~> 1.0", only: :dev},
{:ex_doc, "~> 0.25", only: :dev}
]
end
defp package do
[
maintainers: ["Eduardo Gurgel"],
licenses: ["MIT"],
links: %{"Github" => "https://github.com/edgurgel/signaturex"}
]
end
end