defmodule PlugParadoxAuth.MixProject do use Mix.Project def project do [ app: :plug_paradox_auth, version: "0.1.21", elixir: "~> 1.12", start_permanent: Mix.env() == :prod, deps: deps(), package: package(), description: description() ] end def application do [ extra_applications: [:logger], mod: {PlugParadoxAuth.Application, []} ] end defp description do "A plug library for authenticating Paradox users" end defp deps do [ {:ex_doc, ">= 0.0.0", only: :dev, runtime: false}, {:plug_cowboy, "~> 2.0"}, {:elixir_auth_google, "~> 1.6.3"} ] end # TODO confirm that the package should be private and confirm the name of the org # TODO confirm license type # TODO point to github page (links) defp package do [ files: ~w(lib .formatter.exs mix.exs .env README*), licenses: ["Apache-2.0"], links: %{"GitHub" => "https://github.com/elixir-ecto/postgrex"} # exclude_patterns: ["*.env"] ] end end