-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmix.exs
37 lines (32 loc) · 933 Bytes
/
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
defmodule TruFace.Mixfile do
use Mix.Project
def project do
[app: :tru_face,
version: "0.1.2",
elixir: "~> 1.3",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
deps: deps(),
description: description,
source_url: "https://github.com/Waasi/tru_face",
package: package,
docs: [extras: ["README.md"]]]
end
def application do
[applications: [:logger, :httpoison],
mod: {TruFace, []}]
end
defp deps do
[{:httpoison, "~> 0.12"}, {:poison, "~> 3.1"}, {:mock, "~> 0.2.0", only: :test}, {:ex_doc, ">= 0.0.0", only: :dev}]
end
defp description do
"This is an Elixir library for TrueFace AI"
end
defp package do
[name: :tru_face,
files: ["lib", "config", "mix.exs", "README*", "LICENSE*"],
maintainers: ["Eric Santos"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/Waasi/tru_face"}]
end
end