-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmix.exs
46 lines (41 loc) · 904 Bytes
/
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
defmodule Wb.MixProject do
use Mix.Project
def project do
[
app: :wb,
version: "0.3.1",
elixir: "~> 1.11",
start_permanent: Mix.env() == :prod,
deps: deps(),
escript: escript(),
package: package()
]
end
def application do
[
extra_applications: [:logger, :eex]
]
end
defp deps do
[
{:libgraph, "~> 0.13.3"},
{:earmark, "~> 1.4"},
{:exmoji, "~> 0.3.0"},
{:exexif, "~> 0.0.5"},
{:file_info, "~> 0.0.4"},
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false},
{:yaml_elixir, "~> 2.5"}
]
end
defp escript() do
[main_module: WB.CLI, embed_elixir: true]
end
defp package() do
[
maintainers: ["Adam Rutkowski"],
licenses: ["Apache 2.0"],
links: %{"GitHub" => "/~https://github.com/aerosol/wb"},
description: "Personal wiki engine"
]
end
end