Packages
DoubleClick Bid Manager API client library. DoubleClick Bid Manager API allows users to manage and create campaigns and reports.
Current section
Files
Jump to
Current section
Files
mix.exs
defmodule GoogleApi.DoubleClickBidManager.V1.Mixfile do
use Mix.Project
def project do
[app: :google_api_double_click_bid_manager,
version: "0.0.1",
elixir: "~> 1.4",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
description: description(),
package: package(),
deps: deps(),
source_url: "https://github.com/GoogleCloudPlatform/elixir-google-api/tree/master/clients/double_click_bid_manager"
]
end
def application() do
[extra_applications: [:logger]]
end
defp deps() do
[
{:tesla, "~> 0.8"},
{:poison, ">= 1.0.0"},
{:ex_doc, "~> 0.16", only: :dev}
]
end
defp description() do
"""
API for viewing and managing your reports in DoubleClick Bid Manager.
"""
end
defp package() do
[
files: ["lib", "mix.exs", "README*", "LICENSE"],
maintainers: ["Jeff Ching"],
licenses: ["Apache 2.0"],
links: %{
"GitHub" => "https://github.com/GoogleCloudPlatform/elixir-google-api/tree/master/clients/double_click_bid_manager",
"Homepage" => "https://developers.google.com/bid-manager/"
}
]
end
end