Skip to content

Commit 0a88f81

Browse files
committed
add package info
1 parent 39d5ff9 commit 0a88f81

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

mix.exs

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ defmodule GitHubWebhook.MixProject do
77
version: "0.1.0",
88
elixir: "~> 1.12",
99
start_permanent: Mix.env() == :prod,
10+
description: "Github webhook plug",
11+
package: package(),
1012
deps: deps()
1113
]
1214
end
@@ -23,4 +25,12 @@ defmodule GitHubWebhook.MixProject do
2325
{:plug, "~> 1.4"}
2426
]
2527
end
28+
29+
defp package do
30+
[
31+
files: ["lib", "mix.exs", "README.md"],
32+
licenses: ["MIT"],
33+
links: %{"GitHub" => "https://github.com/puretype/github_webhook"}
34+
]
35+
end
2636
end

0 commit comments

Comments
 (0)