Packages

GCP (Google Cloud Platform) auth library using Application Default Credentials.

Current section

Files

Jump to
gcp_auth mix.exs
Raw

mix.exs

defmodule GCPAuth.Mixfile do
use Mix.Project
def project do
[app: :gcp_auth,
version: "0.1.0",
elixir: "~> 1.3",
elixirc_options: [warnings_as_errors: true],
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
description: "GCP (Google Cloud Platform) auth library using Application Default Credentials.",
deps: deps(),
package: package()]
end
def application do
[applications: [:httpoison, :json_web_token, :logger],
mod: {GCPAuth, []}]
end
defp deps do
[{:httpoison, "~> 0.9.2"},
{:json_web_token, "~> 0.2.6"},
{:credo, "~> 0.4.6", only: :dev}]
end
defp package do
[maintainers: ["Seizan Shimazaki"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/aktsk/gcp_auth"},
files: ~w(mix.exs README.md LICENSE lib)]
end
end