Packages
Cloud Natural Language API client library. Provides natural language understanding technologies, such as sentiment analysis, entity recognition, entity sentiment analysis, and other text annotations, to developers.
Current section
Files
Jump to
Current section
Files
google_api_language
mix.exs
mix.exs
defmodule GoogleApi.Language.V1.Mixfile do
use Mix.Project
@version "0.5.0"
def project() do
[
app: :google_api_language,
version: @version,
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/language"
]
end
def application() do
[extra_applications: [:logger]]
end
defp deps() do
[
{:google_gax, "~> 0.1.0"},
{:ex_doc, "~> 0.16", only: :dev}
]
end
defp description() do
"""
Provides natural language understanding technologies to developers.
Examples include sentiment analysis, entity recognition, entity sentiment analysis, and text annotations.
"""
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/language",
"Homepage" => "https://cloud.google.com/natural-language/"
}
]
end
end