forked from stavro/arc
-
Notifications
You must be signed in to change notification settings - Fork 1
/
mix.exs
42 lines (35 loc) · 856 Bytes
/
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
defmodule Arc.Mixfile do
use Mix.Project
@version "0.5.3"
def project do
[app: :arc,
version: @version,
elixir: "~> 1.0",
deps: deps,
# Hex
description: description,
package: package]
end
defp description do
"""
Flexible file upload and attachment library for Elixir.
"""
end
defp package do
[maintainers: ["Sean Stavropoulos"],
licenses: ["Apache 2.0"],
links: %{"GitHub" => "https://github.com/stavro/arc"},
files: ~w(mix.exs README.md CHANGELOG.md lib)]
end
def application do
[applications: [:logger]]
end
defp deps do
[
{:ex_aws, "~> 0.4.10 or ~> 0.5.0", optional: true},
{:poison, "~> 1.2 or ~> 2.0", optional: true},
{:httpoison, "~> 0.7", optional: true},
{:mock, "~> 0.1.1", only: :test}
]
end
end