forked from HashNuke/hound
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
49 lines (40 loc) · 1.02 KB
/
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
43
44
45
46
47
48
49
defmodule Hound.Mixfile do
use Mix.Project
@version "0.8.2"
def project do
[ app: :hound,
version: @version,
elixir: ">= 1.0.4",
description: "Webdriver library for integration testing and browser automation",
source_url: "https://github.com/HashNuke/hound",
deps: deps,
package: package,
docs: [source_ref: "#{@version}", extras: ["README.md"], main: "readme"]
]
end
def application do
[
applications: [:hackney, :httpoison, :logger],
mod: { Hound, [] },
description: 'Integration testing and browser automation library',
]
end
defp deps do
[
{:httpoison, "~> 0.8"},
{:poison, ">= 1.4.0"},
{:earmark, "~> 0.1.17 or ~> 0.2", only: :docs},
{:ex_doc, "~> 0.11.0", only: :docs}
]
end
defp package do
[
maintainers: ["Akash Manohar J"],
licenses: ["MIT"],
links: %{
"GitHub" => "https://github.com/HashNuke/hound",
"Docs" => "http://hexdocs.pm/hound/"
}
]
end
end