-
Notifications
You must be signed in to change notification settings - Fork 15
/
mix.exs
67 lines (61 loc) · 1.58 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
65
66
67
defmodule Dnsimple.Mixfile do
use Mix.Project
@source_url "https://github.com/dnsimple/dnsimple-elixir"
@version "5.0.0"
def project do
[app: :dnsimple,
version: @version,
elixir: "~> 1.13",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
package: package(),
deps: deps(),
docs: docs(),
dialyzer: [plt_add_deps: :transitive]
]
end
def application do
[extra_applications: [:logger]]
end
defp deps do
[
{:decimal, "~> 2.0"},
{:httpoison, "~> 2.1"},
{:poison, ">= 2.0.0"},
{:exvcr, "~> 0.15.0", only: :test},
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false},
{:dialyxir, "~> 1.0", only: :dev, runtime: false},
]
end
defp package do
[
description: "Elixir client for the DNSimple API v2.",
files: ["lib", "mix.exs", "*.md"],
maintainers: ["Simone Carletti", "Javier Acero", "Anthony Eden"],
licenses: ["MIT"],
links: %{
"GitHub" => @source_url,
"API v2 docs" => "https://developer.dnsimple.com/v2"
}
]
end
defp docs do
[
extras: [
"CHANGELOG.md": [],
"CONTRIBUTING.md": [title: "Contributing"],
"LICENSE.md": [title: "License"],
"README.md": [title: "Overview"],
],
groups_for_modules: [
"API": & &1[:section] == :api,
"Data Types": & &1[:section] == :data_types,
"Util": & &1[:section] == :util
],
main: "readme",
source_url: @source_url,
source_ref: "v#{@version}",
formatters: ["html"]
]
end
end