Skip to content

Commit

Permalink
Merge pull request #9 from curiosum-dev/release/0.1.0
Browse files Browse the repository at this point in the history
Adds hex metadata needed to publish library
  • Loading branch information
szsoppa authored May 20, 2023
2 parents 7928ed3 + 3ea47ae commit 4658b81
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,13 @@ defmodule Contexted.MixProject do
def project do
[
app: :contexted,
description:
"Contexted is an Elixir library designed to streamline the management of complex Phoenix contexts in your projects, offering tools for module separation, subcontext creation, and auto-generating CRUD operations for improved code maintainability.",
version: "0.1.0",
elixir: "~> 1.14",
start_permanent: Mix.env() == :prod,
deps: deps()
deps: deps(),
package: package()
]
end

Expand All @@ -25,4 +28,13 @@ defmodule Contexted.MixProject do
{:ex_doc, "~> 0.25", only: :dev, runtime: false}
]
end

defp package do
[
licenses: ["MIT"],
maintainers: ["Curiosum"],
links: %{"GitHub" => "https://github.com/curiosum-dev/contexted"},
files: ~w(lib priv dist mix.exs CHANGELOG.md README.md LICENSE)
]
end
end

0 comments on commit 4658b81

Please sign in to comment.