-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
34 lines (30 loc) · 843 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
defmodule AmazonProductAdvertisingClient.Mixfile do
use Mix.Project
def project do
[app: :amazon_product_advertising_client,
version: "0.2.4",
elixir: "~> 1.7",
description: "An Amazon Product Advertising API client for Elixir",
package: package(),
deps: deps()]
end
def application do
[extra_applications: [:logger]]
end
defp deps do
[
{:tesla, "~> 1.3"},
{:hackney, "~> 1.16"},
{:castore, "~> 0.1.7"},
{:poison, ">= 1.0.0"}
]
end
defp package do
[
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/Grantimus9/elixir-amazon-product-advertising-client"},
maintainers: ["Grant Nelson <grantmnelsn+oss@gmail.com>"],
source_url: "https://github.com/Grantimus9/elixir-amazon-product-advertising-client"
]
end
end