-
Notifications
You must be signed in to change notification settings - Fork 2
/
mix.exs
42 lines (37 loc) · 897 Bytes
/
mix.exs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
defmodule SoundcloudEx.Mixfile do
use Mix.Project
@description """
SoundCloud api wrapper for Elixir
"""
def project do
[
app: :soundcloud_ex,
version: "0.0.1",
elixir: "~> 1.1",
name: "SoundCloudEx",
description: @description,
package: package,
deps: deps,
test_coverage: [tool: ExCoveralls],
preferred_cli_env: ["coveralls": :test, "coveralls.detail": :test, "coveralls.post": :test]
]
end
def application do
[applications: [:httpoison]]
end
defp deps do
[
{ :httpoison, "~> 0.8.0" },
{ :poison, "~> 2.0" },
{ :excoveralls, "~> 0.4", only: :test },
{ :exvcr, "~> 0.7", only: :test }
]
end
defp package do
[
maintainers: ["Gregorio Setti"],
licenses: ["MIT"],
links: %{ "Github" => "https://github.com/desmondhume/soundcloud_ex" }
]
end
end