-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmix.exs
41 lines (36 loc) · 1.04 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
defmodule ExOpentok.Mixfile do
use Mix.Project
def project do
[app: :ex_opentok,
version: "0.1.0",
elixir: "~> 1.2",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
deps: deps()]
end
def application do
[extra_applications: [:logger]]
end
defp deps do
[{:uuid, "~> 1.1" },
{:joken, "~> 1.4.1"},
{:poison, "~> 2.0"},
{:httpotion, "~> 3.0"},
{:credo, "~> 0.5", only: [:dev, :test]}]
end
defp description do
"""
A Wrapper of Open Tok (Tokbox) API for elixir.
This OpenTok Elixir SDK lets you generate sessions and tokens for OpenTok applications, and archive OpenTok sessions.
"""
end
defp package do
[# These are the default files included in the package
name: :ex_opentok,
files: ["lib", "mix.exs", "README*"],
maintainers: ["Jérémie Flandrin"],
licenses: ["Apache 2.0"],
links: %{"GitHub" => "https://github.com/docJerem/ex_opentok",
"Docs" => "https://github.com/docJerem/ex_opentok"}]
end
end