-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmix.exs
More file actions
32 lines (28 loc) · 748 Bytes
/
mix.exs
File metadata and controls
32 lines (28 loc) · 748 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 AliceGoogleImages.Mixfile do
use Mix.Project
def project do
[app: :alice_google_images,
version: "0.1.4",
elixir: "~> 1.5",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
description: "A handler for the Alice Slack bot. Get random images from Google",
package: package(),
deps: deps()]
end
def application do
[applications: []]
end
defp deps do
[
{:ex_doc, ">= 0.0.0", only: :dev},
{:alice, "~> 0.3"}
]
end
defp package do
[files: ["lib", "config", "mix.exs", "README*"],
maintainers: ["Adam Zaninovich"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/adamzaninovich/alice_google_images"}]
end
end