Skip to content

Commit

Permalink
chore: set package metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
zachdaniel committed Jun 13, 2024
1 parent fbfa61b commit 44acea4
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ defmodule Igniter.MixProject do
elixir: "~> 1.15",
start_permanent: Mix.env() == :prod,
aliases: aliases(),
package: package(),
docs: docs(),
deps: deps()
]
Expand Down Expand Up @@ -51,6 +52,21 @@ defmodule Igniter.MixProject do
]
end

defp package do
[
name: :igniter,
licenses: ["MIT"],
files: ~w(lib .formatter.exs mix.exs README* LICENSE*
CHANGELOG*),
links: %{
GitHub: "https://github.com/ash-project/igniter",
Discord: "https://discord.gg/HTHRaaVPUc",
Website: "https://ash-hq.org",
Forum: "https://elixirforum.com/c/elixir-framework-forums/ash-framework-forum"
}
]
end

# Run "mix help deps" to learn about dependencies.
defp deps do
[
Expand Down

0 comments on commit 44acea4

Please sign in to comment.