-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
55 lines (50 loc) · 1.13 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
defmodule Seven.Mixfile do
use Mix.Project
def project do
[
app: :seven,
deps: deps(),
docs: [
readme: "README.md",
main: "README"
],
description: description(),
elixir: "~> 1.7",
package: package(),
preferred_cli_env: [
vcr: :test, "vcr.delete": :test, "vcr.check": :test, "vcr.show": :test
],
source_url: "https://github.com/seven-io/elixir-client",
version: "0.1.0",
]
end
def application do
[
extra_applications: [:logger, :crypto]
]
end
defp description do
"""
The official Elixir wrapper for the seven.io API.
"""
end
defp deps do
[
{:elixir_uuid, "~> 1.2"},
{:ex_doc, "~> 0.30", only: :dev, runtime: false},
{:exvcr, "~> 0.14", only: :test},
{:httpoison, "~> 2.1"},
{:jason, "~> 1.4"},
]
end
defp package do
[
files: ["lib", "mix.exs", "README.md", "LICENSE"],
licenses: ["MIT"],
links: %{
"GitHub" => "https://github.com/seven-io/elixir-client"
},
maintainers: ["seven communications GmbH & Co. KG"],
]
end
end