forked from nulib/sigaws
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
56 lines (51 loc) · 1.46 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
48
49
50
51
52
53
54
55
56
defmodule Sigaws.Mixfile do
use Mix.Project
@version "0.7.2"
@description """
An Elixir library to sign and verify HTTP requests using AWS Signature V4.
"""
@source_url "https://github.com/handnot2/sigaws"
@blog_url "https://handnot2.github.io/blog/elixir/aws-signature-sigaws"
@test_suite_url "http://docs.aws.amazon.com/general/latest/gr/signature-v4-test-suite.html"
def project do
[
app: :sigaws,
version: @version,
description: @description,
package: package(),
elixir: "~> 1.4",
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
deps: deps(),
test_coverage: [tool: ExCoveralls]
]
end
# Configuration for the OTP application
#
# Type "mix help compile.app" for more information
def application do
# Specify extra applications you'll use from Erlang/Elixir
[extra_applications: [:logger]]
end
# Type "mix help deps" for more examples and options
defp deps do
[
{:ex_doc, ">= 0.0.0", only: :dev},
{:fsm, "~> 0.3", only: :test},
{:excoveralls, "~> 0.6", only: :test},
{:inch_ex, "~> 0.5", only: [:dev, :test]}
]
end
defp package do
[
maintainers: ["handnot2"],
files: ["config", "lib", "LICENSE", "mix.exs", "README.md"],
licenses: ["MIT"],
links: %{
"GitHub" => @source_url,
"Blog" => @blog_url,
"AWS Signature V4 Test Suite" => @test_suite_url
}
]
end
end