Current section
Files
Jump to
Current section
Files
req_github_oauth
mix.exs
mix.exs
defmodule ReqGitHubOAuth.MixProject do
use Mix.Project
def project do
[
app: :req_github_oauth,
version: "0.1.0",
elixir: "~> 1.12",
start_permanent: Mix.env() == :prod,
deps: deps(),
preferred_cli_env: [
docs: :docs,
"hex.publish": :docs
],
docs: [
main: "readme",
extras: ["README.md", "CHANGELOG.md"]
],
package: [
description: "Req plugin for GitHub authentication.",
licenses: ["Apache-2.0"],
links: %{
"GitHub" => "https://github.com/wojtekmach/req_github_oauth"
}
]
]
end
def application do
[
extra_applications: [:logger]
]
end
defp deps do
[
{:req, "~> 0.3.0"},
{:ex_doc, ">= 0.0.0", only: :docs}
]
end
end