Add package metadata

This commit is contained in:
Adam Millerchip 2019-11-03 22:36:40 +09:00
parent 2fe15138f5
commit 031d834366
1 changed files with 13 additions and 0 deletions

13
mix.exs
View File

@ -10,11 +10,24 @@ defmodule LineBot.MixProject do
elixir: "~> 1.9",
start_permanent: Mix.env() == :prod,
deps: deps(),
package: package(),
source_url: "https://github.com/adamu/line_bot",
description: "A package for creating chatbots with the Line messenger",
docs: docs()
]
end
defp package do
[
licenses: ["Apache 2.0"],
links: %{
"Messaging API Documentation" => "https://developers.line.biz/en/services/messaging-api/",
"GitHub" => "https://github.com/adamu/line_bot",
"Sample Bot" => "https://github.com/adamu/line_bot/tree/master/sample"
}
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[