-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmix.exs
68 lines (63 loc) · 1.32 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
68
defmodule B2Client.Mixfile do
use Mix.Project
def project do
[
app: :b2_client,
version: "0.0.4",
elixir: "~> 1.4",
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
deps: deps(),
source_url: "https://github.com/keichan34/b2_client",
docs: [
extras: ["README.md"]
],
package: package(),
description: description(),
dialyzer: [
plt_file: ".local.plt",
plt_add_apps: [
:exfile,
:httpoison,
:jason
]
]
]
end
def application do
[
mod: {B2Client, []},
applications: [
:logger,
:httpoison,
:jason,
:crypto
]
]
end
defp package do
[
files: ["lib", "mix.exs", "README*", "LICENSE*"],
maintainers: ["Keitaroh Kobayashi"],
licenses: ["MIT"],
links: %{
"GitHub" => "https://github.com/keichan34/b2_client",
"Docs" => "http://hexdocs.pm/b2_client/readme.html"
}
]
end
defp description do
"""
A Backblaze B2 library for Elixir
"""
end
defp deps do
[
{:httpoison, "~> 1.7"},
{:jason, "~> 1.2"},
{:exvcr, "~> 0.11", only: :test},
{:earmark, "~> 1.4", only: :dev},
{:ex_doc, "~> 0.22", only: :dev}
]
end
end