-
Notifications
You must be signed in to change notification settings - Fork 1
/
mix.exs
44 lines (41 loc) · 1.23 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
defmodule DublinBusApi.Mixfile do
use Mix.Project
def project do
[app: :dublin_bus_api,
version: "0.1.11",
elixir: "~> 1.4",
build_embedded: Mix.env == :prod,
start_permanentbus: Mix.env == :prod,
deps: deps(),
description: "Access to the Real Time Passenger Information (RTPI) for Dublin Bus services.",
name: "Dublin Bus API",
source_url: "https://github.com/carlo-colombo/dublin-bus-api",
test_coverage: [tool: Coverex.Task, coveralls: true],
docs: [
main: Stop
],
package: [
licenses: ["MIT"],
maintainers: ["Carlo Colombo"],
links: %{
"Github" => "https://github.com/carlo-colombo/dublin-bus-api",
"docs" => "http://hexdocs.pm/dublin_bus_api/Stop.html"
}
]]
end
def application do
[applications: [:httpoison,
:floki]]
end
defp deps do
[{:floki, "~> 0.15"},
{:httpoison, "~> 0.11"},
{:poison, "~> 2.0"},
{:earmark, "~> 1.2", only: :dev},
{:ex_doc, "~> 0.15", only: :dev},
{:mock, "~> 0.2.1", only: :test},
{:credo, "~> 0.7", only: [:test, :dev]},
{:mix_test_watch, "~> 0.3", only: :dev, runtime: false},
{:coverex, "~> 1.4.12", only: :test}]
end
end