-
Notifications
You must be signed in to change notification settings - Fork 3
/
mix.exs
64 lines (57 loc) · 1.33 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
defmodule Gluttony.MixProject do
use Mix.Project
@version "0.3.0"
@url "https://github.com/thiagomajesk/gluttony"
def project do
[
app: :gluttony,
version: @version,
elixir: "~> 1.13",
start_permanent: Mix.env() == :prod,
description: description(),
package: package(),
docs: docs(),
deps: deps()
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
defp description() do
"Compliant RSS 2.0 and Atom 1.0 parser"
end
defp package do
[
maintainers: ["Thiago Majesk Goulart"],
licenses: ["AGPL-3.0-only"],
links: %{"GitHub" => @url},
files: ~w(lib mix.exs README.md LICENSE)
]
end
defp docs() do
[
source_ref: "v#{@version}",
main: "README",
canonical: "http://hexdocs.pm/gluttony",
source_url: @url,
extras: [
"README.md": [filename: "README"]
]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:saxy, "~> 1.4"},
{:httpoison, "~> 1.8 or ~> 2.0"},
{:floki, "~> 0.34"},
{:timex, "~> 3.0"},
{:phoenix_html, "~> 3.2 or ~> 4.0"},
{:exvcr, "~> 0.13", only: :test},
{:ex_doc, "~> 0.29", only: :dev, runtime: false}
]
end
end