Skip to content

Commit

Permalink
add Hex packaging information
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanhercaz committed Oct 6, 2024
1 parent 20f5bac commit 67e2a14
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ defmodule TowerTelegram.MixProject do
version: "0.1.0",
elixir: "~> 1.17",
start_permanent: Mix.env() == :prod,
package: package(),
deps: deps(),
name: "TowerTelegram",
source_url: "https://github.com/ivanhercaz/tower_telegram",
Expand Down Expand Up @@ -38,4 +39,16 @@ defmodule TowerTelegram.MixProject do
extras: ["README.md"]
]
end

defp package do
[
description: "Error tracking and reporting to a Telegram chat (group or channel) using Tower.",
files: ~w(lib LICENSE mix.exs README.md),
licenses: ["Apache-2.0"],
links: %{
"GitHub" => "https://github.com/ivanhercaz/tower_telegram",
"Tower package" => "https://hex.pm/packages/tower",
}
]
end
end

0 comments on commit 67e2a14

Please sign in to comment.