Current section
Files
Jump to
Current section
Files
ueberauth_github_ez
mix.exs
mix.exs
defmodule Ueberauth.Github.Mixfile do
use Mix.Project
@version "0.7.2"
def project do
[app: :ueberauth_github_ez,
version: @version,
name: "Ueberauth Github",
package: package(),
elixir: "~> 1.3",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
source_url: "https://github.com/edwardzhou/ueberauth_github",
homepage_url: "https://github.com/edwardzhou/ueberauth_github",
description: description(),
deps: deps(),
docs: docs()]
end
def application do
[applications: [:logger, :ueberauth, :oauth2]]
end
defp deps do
[
{:oauth2, "~> 0.9"},
{:ueberauth, "~> 0.4"},
# dev/test only dependencies
{:credo, "~> 0.8", only: [:dev, :test]},
# docs dependencies
{:earmark, ">= 0.0.0", only: :dev},
{:ex_doc, ">= 0.0.0", only: :dev}
]
end
defp docs do
[extras: ["README.md"]]
end
defp description do
"An Ueberauth strategy for using Github to authenticate your users."
end
defp package do
[
name: "ueberauth_github_ez",
files: ["lib", "mix.exs", "README.md", "LICENSE"],
maintainers: ["Edward Zhou", "Daniel Neighman", "Sean Callan"],
licenses: ["MIT"],
links: %{"GitHub": "https://github.com/edwardzhou/ueberauth_github"}]
end
end