Skip to content

Commit

Permalink
Merge pull request #106 from akira/akira/package
Browse files Browse the repository at this point in the history
Add package info
  • Loading branch information
akira authored Dec 12, 2021
2 parents 50cd23a + 3cb1c70 commit 00b291d
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ defmodule ExqUI.MixProject do
compilers: [:phoenix] ++ Mix.compilers(),
start_permanent: Mix.env() == :prod,
aliases: aliases(),
deps: deps()
deps: deps(),
package: package()
]
end

Expand All @@ -35,6 +36,21 @@ defmodule ExqUI.MixProject do
]
end

defp package do
[
description: """
Exq UI is the UI component for Exq, a job processing library. Exq UI provides the UI dashboard
to display stats on job processing.
""",
maintainers: ["Anantha Kumaran", "Alex Kira"],
links: %{"GitHub" => "https://github.com/akira/exq_ui"},
licenses: ["Apache2.0"],
files:
~w(lib priv test assets/js assets/css assets/static) ++
~w(LICENSE mix.exs README.md CHANGELOG.md)
]
end

defp aliases do
[
setup: ["deps.get", "cmd npm install --prefix assets"],
Expand Down

0 comments on commit 00b291d

Please sign in to comment.