Packages

A handlez fo' tha Alice Slack bot fo' realz. Uses Gizoogle ta allow you ta drop a rhyme like a thug n' retrieve links fo' translated sitez

Current section

Files

Jump to
Raw

mix.exs

defmodule AliceShizzle.Mixfile do
use Mix.Project
def project do
[app: :alice_shizzle,
version: "0.1.3",
elixir: "~> 1.5",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
description: "A handlez fo' tha Alice Slack bot fo' realz. Uses Gizoogle ta allow you ta drop a rhyme like a thug n' retrieve links fo' translated sitez",
package: package(),
deps: deps()]
end
def application do
[applications: [:gizoogle]]
end
defp deps do
[
{:ex_doc, ">= 0.0.0", only: :dev},
{:alice, "~> 0.3"},
{:gizoogle, "~> 0.0.3"}
]
end
defp package do
[files: ["lib", "config", "mix.exs", "README*"],
maintainers: ["Devin Clark"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/notdevinclark/alice_shizzle",
"Docs" => "https://github.com/notdevinclark/alice_shizzle",
"Alice Slack bot" => "https://github.com/alice-bot/alice",
"Gizoogle" => "http://www.gizoogle.net"}]
end
end