-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
55 lines (49 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
45
46
47
48
49
50
51
52
53
54
55
defmodule TwitterStream.MixProject do
use Mix.Project
@version "0.2.6"
def project() do
[
app: :twitter_stream,
version: @version,
elixir: "~> 1.9",
start_permanent: Mix.env() == :prod,
description: description(),
package: package(),
deps: deps(),
test_coverage: [tool: ExCoveralls],
preferred_cli_env: [
coveralls: :test,
"coveralls.detail": :test,
"coveralls.html": :test,
"coveralls.json": :test,
],
docs: [
main: "TwitterStream",
source_ref: "v#{@version}",
source_url: "https://github.com/thekeele/twitter_stream"
]
]
end
def application() do
[extra_applications: [:logger]]
end
defp deps() do
[
{:hackney, "~> 1.15.2"},
{:jsx, "~> 2.9"},
{:ex_doc, "~> 0.21", only: :dev, runtime: false},
{:mix_test_watch, "~> 0.8", only: :dev, runtime: false},
{:excoveralls, "~> 0.10", only: :test}
]
end
defp description() do
"Just a fault-tolerant Elixir Twitter Streaming Library."
end
defp package() do
%{
licenses: ["MIT"],
maintainers: ["Mark Keele"],
links: %{"GitHub" => "https://github.com/thekeele/twitter_stream"}
}
end
end