Current section
Files
Jump to
Current section
Files
ex_mustang
mix.exs
mix.exs
defmodule ExMustang.Mixfile do
use Mix.Project
def project do
[app: :ex_mustang,
version: "0.1.1",
elixir: "~> 1.3",
description: "A simple, clueless bot and collection of responders",
source_url: "https://github.com/techgaun/ex_mustang",
package: package,
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
docs: [extras: ["README.md"]],
deps: deps()]
end
# Configuration for the OTP application
#
# Type "mix help compile.app" for more information
def application do
[applications: [:logger, :hedwig_slack, :quantum, :tentacat, :ex_google, :timex,
:ex_pwned],
mod: {ExMustang, []}]
end
# Dependencies can be Hex packages:
#
# {:mydep, "~> 0.3.0"}
#
# Or git/path repositories:
#
# {:mydep, git: "https://github.com/elixir-lang/mydep.git", tag: "0.1.0"}
#
# Type "mix help deps" for more examples and options
defp deps do
[
{:hedwig_slack, "~> 1.0"},
{:tentacat, "~> 0.5"},
{:quantum, "~> 1.8.1"},
{:timex, "~> 3.1"},
{:ex_google, "~> 0.1"},
{:ex_pwned, "~> 0.1"},
{:ex_doc, "~> 0.14.5", only: [:dev]}
]
end
defp package do
[
maintainers: [
"Samar Acharya"
],
licenses: ["Apache-2.0"],
links: %{"GitHub" => "https://github.com/techgaun/ex_mustang"}
]
end
end