diff --git a/mix.exs b/mix.exs index fb620aa..f5d90b8 100644 --- a/mix.exs +++ b/mix.exs @@ -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 @@ -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