-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
50 lines (45 loc) · 1.19 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
defmodule Botlead.MixProject do
use Mix.Project
def project do
[
app: :botlead,
version: "0.2.4",
elixir: "~> 1.9",
description: "Elixir framework for writing and configuring chat bots",
docs: [extras: ["README.md"]],
start_permanent: Mix.env() == :prod,
build_embedded: Mix.env() == :prod,
package: package(),
elixirc_paths: elixirc_paths(Mix.env()),
deps: deps()
]
end
def package do
[
name: :botlead,
files: ["lib", "mix.exs"],
maintainers: ["Vyacheslav Voronchuk"],
licenses: ["MIT"],
links: %{"Github" => "https://github.com/starbuildr/botlead"}
]
end
def application do
[
mod: {Botlead, []},
extra_applications: [:logger]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:gen_router, "~> 0.1"},
{:nadia, "~> 0.7"},
{:earmark, ">= 0.0.0", only: :dev},
{:ex_doc, "~> 0.24", only: :dev, runtime: false},
{:ex_machina, "~> 2.7", only: :test},
{:exvcr, "~> 0.13", only: :test}
]
end
defp elixirc_paths(:test), do: ["lib", "test/stub_modules", "test/support"]
defp elixirc_paths(_), do: ["lib"]
end