-
Notifications
You must be signed in to change notification settings - Fork 3
/
mix.exs
49 lines (43 loc) · 957 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
47
48
49
defmodule Exquery.Mixfile do
use Mix.Project
@version "0.0.11"
def project do
[
app: :exquery,
version: @version,
elixir: "~> 1.0",
description: description,
package: package,
deps: deps,
docs: [
readme: "README.md", main: "README",
source_ref: "v#{@version}",
source_url: "https://github.com/rozap/exquery"
]
]
end
def application do
[applications: [:logger]]
end
defp description do
"""
A library for parsing HTML and querying elements within. Handy for web scraping or autmated testing.
"""
end
defp package do
[
files: ["lib", "README.md", "config", "LICENSE", "mix.exs"],
contributors: ["Chris Duranti"],
licenses: ["MIT"],
links: %{
"GitHub" => "https://github.com/rozap/exquery"
}
]
end
defp deps do
[
{:earmark, "~> 0.1.13"},
{:ex_doc, "~> 0.7"}
]
end
end