-
Notifications
You must be signed in to change notification settings - Fork 9
/
mix.exs
43 lines (39 loc) · 1.12 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
defmodule Exmqttc.Mixfile do
use Mix.Project
def project do
[
app: :exmqttc,
version: "0.6.1",
elixir: "~> 1.7",
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
deps: deps(),
package: package(),
docs: [main: "readme.html#usage", extras: ["README.md"]]
]
end
def application do
[extra_applications: [:logger]]
end
def package do
%{
name: :exmqttc,
files: ["lib", "mix.exs", "README*", "LICENSE*"],
maintainers: ["Tim Buchwaldt"],
description:
"Elixir wrapper for the emqttc library. Some of the features: Reconnection, offline queueing, gen_* like callback APIs, QoS 0-2.",
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/timbuchwaldt/exmqttc"}
}
end
defp deps do
[
{:emqttc, github: "emqtt/emqttc", only: [:dev, :test]},
{:elixir_uuid, "~> 1.2"},
{:ex_doc, ">= 0.0.0", only: :dev},
{:dialyxir, "~> 0.5", only: :dev, runtime: false},
{:credo, "~> 0.10", only: [:dev, :test], runtime: false},
{:inch_ex, "~> 1.0", only: :dev}
]
end
end