-
Notifications
You must be signed in to change notification settings - Fork 4
/
mix.exs
41 lines (38 loc) · 795 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
defmodule EasyHTML.MixProject do
use Mix.Project
def project do
[
app: :easyhtml,
version: "0.3.2",
elixir: "~> 1.12",
start_permanent: Mix.env() == :prod,
deps: deps(),
preferred_cli_env: [
docs: :docs,
"hex.publish": :docs
],
docs: [
main: "readme",
extras: ["README.md", "CHANGELOG.md"]
],
package: [
description: "EasyHTML makes working with HTML easy.",
licenses: ["Apache-2.0"],
links: %{
"GitHub" => "https://github.com/wojtekmach/easyhtml"
}
]
]
end
def application do
[
extra_applications: [:logger]
]
end
defp deps do
[
{:floki, "~> 0.35"},
{:ex_doc, ">= 0.0.0", only: :docs}
]
end
end