Skip to content

Commit

Permalink
write publish configurations
Browse files Browse the repository at this point in the history
  • Loading branch information
kouwasi committed Mar 28, 2018
1 parent a8dc36f commit b773340
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,11 @@ defmodule SteamEx.Mixfile do
version: "0.2.0-alpha",
elixir: "~> 1.5",
start_permanent: Mix.env == :prod,
deps: deps()
description: description(),
package: package(),
deps: deps(),
name: "SteamEx",
source_url: "https://github.com/kouwasi/steam_ex"
]
end

Expand All @@ -26,4 +30,20 @@ defmodule SteamEx.Mixfile do
{:earmark, "~> 1.2", only: :dev, runtime: false}
]
end

defp description() do
"Elixir wrapper for the Steam Web API"
end

defp package() do
[
# This option is only needed when you don't want to use the OTP application name
name: "steam_ex",
# These are the default files included in the package
files: ["lib", "mix.exs", "README*", "LICENSE*"],
maintainers: ["kouwasi"],
licenses: ["MIT License"],
links: %{"GitHub" => "https://github.com/kouwasi/steam_ex"}
]
end
end

0 comments on commit b773340

Please sign in to comment.