Packages

A handler for the Alice Slack bot. Retrieves latest, specific and random XKCD comics.

Current section

Files

Jump to
alice_xkcd mix.exs
Raw

mix.exs

defmodule AliceXkcd.Mixfile do
use Mix.Project
def project do
[app: :alice_xkcd,
version: "0.0.4",
elixir: "~> 1.2",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
description: "A handler for the Alice Slack bot. Retrieves latest, specific and random XKCD comics.",
package: package,
deps: deps]
end
def application do
[applications: [:xkcd]]
end
defp deps do
[
{:alice, "~> 0.3"},
{:xkcd, "~> 0.0.1"},
{:ex_doc, ">= 0.0.0", only: :dev}
]
end
defp package do
[files: ["lib", "config", "mix.exs", "README*"],
maintainers: ["Devin Clark"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/notdevinclark/alice_xkcd",
"Docs" => "https://github.com/notdevinclark/alice_xkcd",
"Alice Slack bot" => "https://github.com/alice-bot/alice",
"XKCD" => "http://xkcd.com/"}]
end
end