forked from mweibel/facebook.ex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
59 lines (53 loc) · 1.19 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
52
53
54
55
56
57
58
59
Code.ensure_loaded?(Hex) and Hex.start
defmodule Facebook.Mixfile do
use Mix.Project
def project do
[
app: :facebook,
version: "0.15.0",
elixir: "~> 1.0",
description: description(),
package: package(),
deps: deps(),
source_url: "https://github.com/mweibel/facebook.ex"
]
end
# Configuration for the OTP application
def application do
[
mod: { Facebook, [] },
applications: [:json, :hackney, :logger],
env: [
env: :dev,
graph_url: "https://graph.facebook.com/v2.9",
graph_video_url: "https://graph-video.facebook.com/v2.9",
appsecret: nil
]
]
end
defp description do
"""
Facebook Graph API Wrapper written in Elixir.
Please note, this is very much a work in progress. Feel free to contribute using pull requests.
"""
end
defp package do
[
licenses: ["MIT"],
links: %{
"GitHub" => "https://github.com/mweibel/facebook.ex"
},
maintainers: [
"mweibel",
"jovannypcg"
]
]
end
defp deps do
[
{:json, ">= 0.3.3"},
{:hackney, "~> 1.6"},
{:ex_doc, ">= 0.13.0", only: :dev}
]
end
end