Packages

OAuth2 convenience functions

Current section

Files

Jump to
Raw

mix.exs

defmodule OAuth2Utils.MixProject do
use Mix.Project
def project do
[
app: :oauth2_utils,
description: "OAuth2 convenience functions",
version: "0.1.0",
elixir: "~> 1.7",
start_permanent: Mix.env() == :prod,
deps: deps(),
package: package(),
source_url: "https://github.com/tanguilp/oauth2_utils"
]
end
def application do
[
extra_applications: [:logger]
]
end
defp deps do
[
{:dialyxir, "~> 1.0.0-rc.4", only: [:dev], runtime: false},
{:ex_doc, "~> 0.19", only: :dev, runtime: false}
]
end
def package() do
[
licenses: ["Apache-2.0"],
links: %{"GitHub" => "https://github.com/tanguilp/oauth2_utils"}
]
end
end