-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
51 lines (46 loc) · 1.11 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 Honeywell.Mixfile do
use Mix.Project
def project do
[app: :honeywell,
version: "0.1.1",
elixir: "~> 1.3",
name: "Honeywell Api Client",
source_url: "https://github.com/jeffutter/honeywell-elixir.ex",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
docs: [
extras: ["README.md"]
],
package: package,
deps: deps,
description: description]
end
def application do
[applications: [:logger, :oauth2, :poison],
mod: {Honeywell, []}]
end
defp description do
"""
Client library for the Honeywell Round and Water Leak & Freeze Detector APIs.
"""
end
defp deps do
[
{:httpoison, "~> 0.9.0"},
{:oauth2, "~> 0.7.0"},
{:poison, "~> 2.2.0"},
{:credo, "~> 0.4", only: [:dev, :test]},
{:ex_doc, "~> 0.12", only: :dev},
{:inch_ex, only: :docs},
{:exvcr, "~> 0.7", only: :test}
]
end
def package do
[
name: :honeywell,
maintainers: ["Jeffery Utter"],
licenses: ["MIT"],
links: %{"Github" => "https://github.com/jeffutter/honeywell-elixir"},
]
end
end