-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
51 lines (46 loc) · 1.18 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
defmodule EPoller.Mixfile do
use Mix.Project
def project do
[
app: :e_poller,
version: "0.1.1",
elixir: "~> 1.5",
start_permanent: Mix.env == :prod,
deps: deps(),
description: description(),
name: "e_poller",
source_url: "https://github.com/vishalkuo/e_poller",
package: package()
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
defp description() do
"An SQS long poller written in Elixir. Simulates the SQS poll function seen in the official AWS Ruby client."
end
defp deps do
[
{:ex_aws, "~> 2.0.2"},
{:ex_aws_sqs, "~> 2.0"},
{:poison, "~> 3.0"},
{:hackney, "~> 1.9"},
{:configparser_ex, "~> 2.0"},
{:sweet_xml, "~> 0.6"},
{:mock, "~> 0.3.0", only: :test},
{:ex_doc, "~> 0.16", only: :dev, runtime: false}
]
end
defp package() do
[
name: "e_poller",
files: ["lib", "mix.exs", "README*", "LICENSE*"],
maintainers: ["Vishal Kuo"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/vishalkuo/e_poller"}
]
end
end