Current section
Files
Jump to
Current section
Files
mix.exs
defmodule Fort.MixProject do
use Mix.Project
def project do
[
app: :fort,
version: "0.0.1",
elixir: "~> 1.15",
description:
"Fort authentication library for Elixir. Placeholder reserving the name ahead of the first release.",
package: package()
]
end
def application, do: []
defp package do
[
name: "fort",
files: ~w(lib/fort.ex mix.exs README.md LICENSE),
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/UntangleDev/elixir-authlib"}
]
end
end