Skip to content

Commit

Permalink
Prep mix.exs for hex release
Browse files Browse the repository at this point in the history
  • Loading branch information
scrogson committed Dec 17, 2014
1 parent 5aeb263 commit 6f56051
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions mix.exs
Original file line number Diff line number Diff line change
@@ -1,22 +1,14 @@
defmodule OAuth2.Mixfile do
use Mix.Project

@description """
Elixir OAuth2 Client
"""

def project do
[
app: :oauth2,
version: "0.0.1",
elixir: "~> 1.0",
deps: deps,
description: @description,
package: [
contributors: ["Sonny Scroggin", "Nate West"],
licence: "MIT",
links: [github: "https://github.com/scrogson/oauth2"]
]
package: package,
description: "An Elixir OAuth 2.0 Client Library"
]
end

Expand All @@ -26,11 +18,19 @@ defmodule OAuth2.Mixfile do

defp deps do
[
{:hackney, "~> 0.14.1"},
{:httpoison, "~> 0.5.0"},
{:poison, "~> 1.2.0"},
{:cowboy, "~> 1.0", optional: true},
{:plug, "~> 0.9.0"},
{:hackney, "~> 0.14.1"},
{:httpoison, "~> 0.5.0"},
{:poison, "~> 1.2.0"},
{:cowboy, "~> 1.0", only: :test},
{:plug, "~> 0.9.0"},
]
end

defp package do
[
contributors: ["Sonny Scroggin"],
licence: "MIT",
links: %{github: "https://github.com/scrogson/oauth2"}
]
end
end

0 comments on commit 6f56051

Please sign in to comment.