-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmix.exs
46 lines (41 loc) · 1.01 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
defmodule RFC3986.Mixfile do
use Mix.Project
def project do
[app: :ex_rfc3986,
name: "ex_rfc3986",
version: "0.3.0",
source_url: "https://github.com/marcelog/ex_rfc3986",
elixir: ">= 1.0.0",
description: description(),
package: package(),
deps: deps()]
end
# Configuration for the OTP application
#
# Type `mix help compile.app` for more information
def application do
[applications: [:logger]]
end
defp description do
"""
An URI parser trying to be strictly compatible with RFC3986. Uses official ABNF grammar and ex_abnf as interpreter.
"""
end
defp deps do
[
{:ex_abnf, "~> 0.3.0"},
{:earmark, "~> 1.0.3", only: :dev},
{:ex_doc, "~> 0.14.5", only: :dev}
]
end
defp package do
[
files: ["lib", "mix.exs", "README*", "LICENSE*", "priv"],
maintainers: ["Marcelo Gornstein"],
licenses: ["Apache 2.0"],
links: %{
"GitHub" => "https://github.com/marcelog/ex_rfc3986"
}
]
end
end