-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
53 lines (49 loc) · 1.23 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
51
52
53
defmodule Kabootar.MixProject do
use Mix.Project
def project do
[
app: :kabootar,
description: "Build human-in-the-loop conversation bots",
package: [
licenses: ["GPL-3.0-only"],
links: %{
website: "https://tattle.co.in"
}
],
version: "0.0.2",
elixir: "~> 1.15",
start_permanent: Mix.env() == :prod,
deps: deps(),
# Docs
name: "Kabootar",
source_url: "https://github.com/tattle-made/kabootar",
homepage_url: "https://tattle.co.in/products/kabootar",
docs: [
main: "Kabootar",
# logo: add logo here,
extras: [
"README.md",
"docs/contributor/functional-spec.md",
"docs/contributor/design-spec.md"
]
# groups_for_extras: [
# "Contributor Guides": Path.wildcard("docs/contributor/*.md")
# ]
]
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:ex_doc, "~> 0.34.2", only: :dev, runtime: false},
{:versioce, "~> 2.0.0"},
{:libgraph, "~> 0.16.0"}
]
end
end