Packages
Search Ads 360 API client library. The Search Ads 360 API allows developers to automate uploading conversions and downloading reports from Search Ads 360.
Current section
Files
Jump to
Current section
Files
google_api_double_click_search
mix.exs
mix.exs
defmodule GoogleApi.DoubleClickSearch.V2.Mixfile do
use Mix.Project
def project do
[app: :google_api_double_click_search,
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_search"
]
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
"""
Reports and modifies your advertising data in DoubleClick Search (for example, campaigns, ad groups, keywords, and conversions).
"""
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_search",
"Homepage" => "https://developers.google.com/doubleclick-search/"
}
]
end
end