Packages
An Ueberauth strategy for Withings OAuth2 authentication
Current section
Files
Jump to
Current section
Files
ueberauth_withings
mix.exs
mix.exs
defmodule UeberauthWithings.Mixfile do
use Mix.Project
@version "1.0.2"
@url "https://github.com/tsubery/ueberauth_withings"
def project do
[app: :ueberauth_withings,
version: @version,
elixir: "~> 1.3",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
source_url: @url,
homepage_url: @url,
description: description(),
package: package(),
deps: deps()]
end
def application do
[applications: [:logger, :oauther, :ueberauth]]
end
defp deps do
[
{:oauther, "~> 1.1"},
{:httpoison, "~> 0.10"},
{:ueberauth, "~> 0.4"},
{:ex_doc, ">= 0.0.0", only: :dev}
]
end
defp description do
"An Ueberauth strategy for Withings OAuth2 authentication"
end
defp package do
[files: ["lib", "mix.exs", "README.md", "LICENSE"],
maintainers: ["Gal Tsubery"],
licenses: ["Apache 2.0"],
links: %{ "Github": @url,
"Withings": "https://withings.comg"
}]
end
end