-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmix.exs
More file actions
37 lines (32 loc) · 812 Bytes
/
mix.exs
File metadata and controls
37 lines (32 loc) · 812 Bytes
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
defmodule BlazeCloud.Mixfile do
use Mix.Project
def project do
[app: :blaze_cloud,
version: "0.0.1",
elixir: "~> 1.2",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
deps: deps,
description: description,
package: package]
end
def application do
[applications: [:logger, :httpoison]]
end
defp deps do
[{:httpoison, "~> 0.8.1"},
{:poison, "~> 2.0.1"},
{:mock, "~> 0.1.1", only: :test}]
end
defp description do
"""
Elixir Library for Backblaze B2 Cloud Storage.
"""
end
defp package do
[files: ["lib", "mix.exs", "README.md", "LICENSE.md"],
maintainers: ["David Peredo"],
licenses: ["MIT License"],
links: %{"Github" => "https://github.com/PerishableDave/blaze_cloud"}]
end
end