-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmix.exs
More file actions
32 lines (28 loc) · 700 Bytes
/
mix.exs
File metadata and controls
32 lines (28 loc) · 700 Bytes
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
defmodule FlowerPower.Mixfile do
use Mix.Project
def project do
[app: :flower_power,
version: "0.3.0",
elixir: "~> 1.0",
description: "Api client for flower power cloud api",
package: package,
deps: deps]
end
def application do
[applications: [:logger, :httpoison, :tzdata]]
end
defp package do
[ files: ["lib", "priv", "mix.exs", "README.md"],
maintainers: ["Lee Bryant"],
licenses: ["MIT"],
links: %{ "GitHub": "https://github.com/Korbin73/FlowerPower" } ]
end
defp deps do
[
{:httpoison, "~> 0.7.2"},
{:poison, "~> 1.5"},
{:timex, "~> 1.0"},
{:shouldi, "~> 0.3.0", only: :test}
]
end
end