forked from beam-community/ua_parser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmix.exs
More file actions
43 lines (36 loc) · 861 Bytes
/
mix.exs
File metadata and controls
43 lines (36 loc) · 861 Bytes
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
defmodule UAParser.Mixfile do
use Mix.Project
@version "1.1.1"
def project do
[
app: :ua_parser,
description: "Parse user-agent strings with BrowserScope patterns",
version: @version,
elixir: "~> 1.3",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
package: package(),
deps: deps()
]
end
def application do
[
applications: [:logger, :yomel]
]
end
defp deps do
[
{:yomel, "~> 0.5.0"},
{:credo, "~> 0.5", only: [:dev, :test]},
{:ex_doc, ">= 0.0.0", only: :dev},
]
end
defp package do
[
maintainers: ["Sean Callan", "Bobby Grayson"],
files: ["lib", "mix.exs", "README*", "LICENSE*", "priv"],
licenses: ["Apache 2.0"],
links: %{github: "https://github.com/doomspork/ua_parser"}
]
end
end