forked from BlakeWilliams/Elixir-Slack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
39 lines (34 loc) · 921 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
38
39
defmodule Slack.Mixfile do
use Mix.Project
def project do
[app: :slack,
version: "0.4.2",
elixir: "~> 1.0",
name: "Slack",
deps: deps,
docs: docs,
source_url: "https://github.com/BlakeWilliams/Elixir-Slack",
description: "A Slack Real Time Messaging API client.",
package: package]
end
def application do
[applications: [:logger, :httpoison, :hackney, :exjsx]]
end
defp deps do
[{:httpoison, "~> 0.8.0"},
{:exjsx, "~> 3.1.0"},
{:websocket_client, github: "jeremyong/websocket_client"},
{:earmark, "~> 0.2.0", only: :dev},
{:ex_doc, "~> 0.11", only: :dev}]
end
def docs do
[{:main, Slack}]
end
defp package do
%{maintainers: ["Blake Williams"],
licenses: ["MIT"],
links: %{
"Github": "https://github.com/BlakeWilliams/Elixir-Slack",
"Documentation": "http://hexdocs.pm/slack/"}}
end
end