Packages

A pre-configured moto docker-compose stack definition for integration testing with the divo library.

Current section

Files

Jump to
divo_moto mix.exs
Raw

mix.exs

defmodule DivoMoto.MixProject do
use Mix.Project
def project do
[
app: :divo_moto,
version: "0.1.0",
elixir: "~> 1.8",
start_permanent: Mix.env() == :prod,
deps: deps(),
docs: docs(),
package: package(),
description: description(),
source_url: "https://github.com/bennyhat/divo_moto"
]
end
def application do
[
extra_applications: [:logger]
]
end
defp deps do
[
{:credo, "~> 1.1", only: :dev, runtime: false},
{:divo, "~> 1.1"},
{:ex_doc, "~> 0.19", only: :dev}
]
end
defp description do
"A pre-configured moto docker-compose stack definition for
integration testing with the divo library."
end
defp package do
[
maintainers: ["bennyhat"],
licenses: ["Apache 2.0"],
links: %{"GitHub" => "https://github.com/bennyhat/divo_moto"}
]
end
defp docs do
[
main: "readme",
source_url: "https://github.com/bennyhat/divo_moto",
extras: [
"README.md"
]
]
end
end