forked from danielberkompas/ex_twilio
-
Notifications
You must be signed in to change notification settings - Fork 1
/
mix.exs
64 lines (58 loc) · 1.45 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
57
58
59
60
61
62
63
64
defmodule ExTwilio.Mixfile do
use Mix.Project
@source_url "https://github.com/danielberkompas/ex_twilio"
@version "0.9.1"
def project do
[
app: :ex_twilio,
version: @version,
elixir: "~> 1.2",
name: "ExTwilio",
package: package(),
docs: docs(),
deps: deps()
]
end
def application do
[extra_applications: [:logger]]
end
defp deps do
[
{:httpoison, ">= 0.9.0"},
{:jason, "~> 1.2"},
{:inflex, "~> 2.0"},
{:joken, "~> 2.0"},
{:dialyze, "~> 0.2.0", only: [:dev, :test]},
{:mock, "~> 0.3", only: :test},
{:ex_doc, ">= 0.0.0", only: [:dev, :test]},
{:inch_ex, ">= 0.0.0", only: [:dev, :test]}
]
end
defp docs do
[
extras: [
"CHANGELOG.md": [title: "Changelog"],
"CONTRIBUTING.md": [title: "Contributing"],
"LICENSE.md": [title: "License"],
"README.md": [title: "Overview"],
"CALLING_TUTORIAL.md": [title: "Calling Tutorial"]
],
main: "readme",
source_url: @source_url,
source_ref: "v#{@version}",
skip_undefined_reference_warnings_on: ["CHANGELOG.md"],
formatters: ["html"]
]
end
defp package do
[
description: "Twilio API library for Elixir",
maintainers: ["Daniel Berkompas"],
licenses: ["MIT"],
links: %{
"Changelog" => "https://hexdocs.pm/ex_twilio/changelog.html",
"Github" => @source_url
}
]
end
end