Skip to content

Commit

Permalink
Prepare for release
Browse files Browse the repository at this point in the history
  • Loading branch information
abitdodgy committed Oct 19, 2018
1 parent ad97939 commit 4af478e
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 @@ -7,7 +7,11 @@ defmodule Iam.MixProject do
version: "0.1.0",
elixir: "~> 1.7",
start_permanent: Mix.env() == :prod,
deps: deps()
description: description(),
deps: deps(),
name: "ExAws.IAM",
source_url: "https://github.com/abitdodgy/ex_aws_iam",
package: package()
]
end

Expand All @@ -26,4 +30,16 @@ defmodule Iam.MixProject do
{:sweet_xml, "~> 0.6"}
]
end

defp description do
"An ExAws service module to interact with AWS IAM"
end

defp package do
[
licenses: ["MIT"],
maintainers: ["Mohamad El-Husseini"],
links: %{github: "https://github.com/abitdodgy/ex_aws_iam"},
]
end
end

0 comments on commit 4af478e

Please sign in to comment.