-
Notifications
You must be signed in to change notification settings - Fork 58
/
mix.exs
79 lines (71 loc) · 1.96 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
defmodule Readability.Mixfile do
use Mix.Project
@source_url "https://github.com/keepcosmos/readability"
@version "0.12.1"
def project do
[
app: :readability,
version: @version,
elixir: "~> 1.10",
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
test_coverage: [tool: ExCoveralls],
preferred_cli_env: [
coveralls: :test,
"coveralls.detail": :test,
"coveralls.post": :test,
"coveralls.html": :test,
"test.watch": :test
],
package: package(),
deps: deps(),
docs: docs()
]
end
def application do
[]
end
defp deps do
# https://github.com/lpil/mix-test.watch/pull/140#issuecomment-1853912030
test_watch_runtime = match?(["test.watch" | _], System.argv())
# Make test suite run with Elixir 1.10 happy
html5ever_dep =
if Version.match?(System.version(), ">= 1.13.0") do
{:html5ever, "~> 0.16", only: :test}
else
[]
end
[
{:floki, "~> 0.24"},
{:httpoison, "~> 1.8 or ~> 2.0"},
{:ex_doc, "~> 0.31", only: :dev},
{:credo, "~> 1.6", only: [:dev, :test]},
{:dialyxir, "~> 1.4", only: [:dev, :test], runtime: false},
{:mock, "~> 0.3", only: :test},
{:excoveralls, "~> 0.18", only: :test},
{:mix_test_watch, "~> 1.0", only: [:dev, :test], runtime: test_watch_runtime}
] ++ List.wrap(html5ever_dep)
end
defp package do
[
description: "Readability library for extracting and curating articles.",
files: ["lib", "mix.exs", "README*", "LICENSE*", "doc"],
maintainers: ["Jaehyun Shin", "Jakub Skałecki"],
licenses: ["Apache-2.0"],
links: %{
"GitHub" => @source_url
}
]
end
defp docs do
[
extras: [
"LICENSE.md": [title: "License"],
"README.md": [title: "Overview"]
],
main: "readme",
source_url: @source_url,
formatters: ["html"]
]
end
end