-
Notifications
You must be signed in to change notification settings - Fork 11
/
mix.exs
44 lines (39 loc) · 876 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
41
42
43
44
defmodule ExGrid.Mixfile do
use Mix.Project
def project do
[app: :exgrid,
version: "1.0.0",
elixir: "~> 1.4",
description: description(),
package: package(),
deps: deps()]
end
# Configuration for the OTP application
#
# Type `mix help compile.app` for more information
def application do
[applications: [:httpotion, :timex]]
end
defp deps do
[
{:ex_doc, "~> 0.12", only: :dev},
{:ibrowse, "~> 4.2"},
{:httpotion, "~> 3.0"},
{:json, "~> 1.0"},
{:timex, "~> 3.0"}
]
end
def description do
"Elixir bindings for SendGrid's REST API"
end
def package do
[
maintainers: ["Bradley Smith"],
contributors: ["Bradley Smith"],
licenses: ["The MIT License"],
links: %{
"GitHub" => "https://github.com/bradleyd/exgrid"
}
]
end
end