Packages

helper functions for using AWS rekognition - in elixir

Current section

Files

Jump to

mix.exs

defmodule ItsfoundRekognition.MixProject do
use Mix.Project
def project do
[
description: "helper functions for using AWS rekognition - in elixir",
source_url: github_link(),
package: package(),
app: :itsfound_rekognition,
version: "0.1.9",
elixir: "~> 1.18.4",
start_permanent: Mix.env() == :prod,
deps: deps()
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
mod: {ItsfoundRekognition.Application, []},
extra_applications: [:confex, :logger, :ex_aws_rekognition, :ex_aws, :ex_aws_s3]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:ex_aws_rekognition, "~> 0.6.0"},
{:ex_aws, "~> 2.6.0"},
{:ex_aws_s3, "~> 2.5.8"},
{:hackney, "~> 1.25.0"},
{:sweet_xml, "~> 0.7.5"},
{:poison, "~> 5.0.0"},
{:confex, "~> 3.5.1"},
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false}
]
end
defp package() do
[
maintainers: ["Netflakes"],
licenses: ["MIT"],
links: %{"GitHub" => github_link()}
]
end
defp github_link() do
"https://github.com/LukeJ80/itsfound_rekognition"
end
end