Current section
Files
Jump to
Current section
Files
package.exs
defmodule Pot.Mixfile do
use Mix.Project
def project do
[app: :pot,
version: "0.9.2",
description: description,
package: package]
end
defp description do
"""
POT is an Erlang library for generating Google Authenticator compatible one time passwords.
"""
end
defp package do
[files: ~w(src rebar.config README.md LICENSE.txt package.exs),
contributors: ["Yuce Tekol"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/yuce/pot"}]
end
end