Packages

An AWS S3 adapter for Exfile, using the ex_aws client library to interface with S3.

Current section

Files

Jump to
exfile_s3 mix.exs
Raw

mix.exs

defmodule ExfileS3.Mixfile do
use Mix.Project
def project do
[
app: :exfile_s3,
version: "0.0.2",
elixir: "~> 1.2",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
deps: deps,
description: description,
package: package
]
end
defp description do
"""
An AWS S3 adapter for Exfile, using the ex_aws client library to interface with S3.
"""
end
defp package do
[
name: :exfile_s3,
files: ["lib", "mix.exs", "README*", "LICENSE*"],
maintainers: ["Matt Nguyen"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/MattNguyen/exfile-s3"}
]
end
# Configuration for the OTP application
#
# Type "mix help compile.app" for more information
def application do
[applications: [:exfile, :ex_aws, :httpoison, :logger]]
end
# Dependencies can be Hex packages:
#
# {:mydep, "~> 0.3.0"}
#
# Or git/path repositories:
#
# {:mydep, git: "https://github.com/elixir-lang/mydep.git", tag: "0.1.0"}
#
# Type "mix help deps" for more examples and options
defp deps do
[
{:exfile, "~> 0.3"},
{:ex_aws, "~> 0.5"},
{:sweet_xml, "~> 0.6"},
{:httpoison, "~> 0.8"},
{:poison, "~> 1.5 or ~> 2.0"}
]
end
end