Skip to content

Commit

Permalink
Updated package details
Browse files Browse the repository at this point in the history
  • Loading branch information
dkln committed May 1, 2024
1 parent eb967a1 commit 4bfcc53
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 @@ -6,6 +6,10 @@ defmodule WuunderUtils.MixProject do
app: :wuunder_utils,
version: "0.1.0",
elixir: "~> 1.14",
organization: "wuunder",
name: "Wuunder Utils",
description: "Set of helper modules",
package: package(),
start_permanent: Mix.env() == :prod,
deps: deps(),
docs: [
Expand All @@ -31,4 +35,13 @@ defmodule WuunderUtils.MixProject do
{:ex_doc, "~> 0.31", only: :dev, runtime: false}
]
end

defp package() do
[
name: "wuunder_utils",
files: ~w(lib .formatter.exs mix.exs README*),
licenses: ["Apache-2.0"],
links: %{"GitHub" => "https://github.com/wuunder/wuunder_utils"}
]
end
end

0 comments on commit 4bfcc53

Please sign in to comment.