-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
mix.exs
53 lines (47 loc) · 1.24 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
defmodule Pumba.MixProject do
@moduledoc false
use Mix.Project
@package [
name: "pumba",
files: ~w(lib assets .formatter.exs mix.exs README* LICENSE*),
licenses: ["Unlicense"],
links: %{"GitHub" => "https://github.com/imanhodjaev/pumba"}
]
@description "Fetch, store and access user agent strings for different browsers"
def project do
[
app: :pumba,
version: "0.0.2",
elixir: "~> 1.11",
start_permanent: Mix.env() == :prod,
deps: deps(),
description: @description,
package: @package,
# Docs
name: "Pumba",
source_url: "https://github.com/imanhodjaev/pumba",
homepage_url: "https://github.com/imanhodjaev/pumba",
docs: [
main: "readme",
extras: ["README.md"]
]
]
end
def application do
[
extra_applications: [:logger],
mod: {Pumba.Application, []}
]
end
defp deps do
[
{:floki, "~> 0.34.0"},
{:tesla, "~> 1.4"},
{:typed_struct, "~> 0.2.1"},
{:ex_doc, "~> 0.29.0", only: :dev, runtime: false},
{:credo, "~> 1.5", only: [:dev, :test], runtime: false},
{:inch_ex, github: "rrrene/inch_ex", only: [:dev, :test]},
{:mox, "~> 1.0", only: :test}
]
end
end