-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathmix.exs
56 lines (50 loc) · 1.14 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
defmodule NotQwerty123.Mixfile do
use Mix.Project
@source_url "https://github.com/riverrun/not_qwerty123"
@version "2.4.1"
def project do
[
app: :not_qwerty123,
version: @version,
elixir: "~> 1.7",
start_permanent: Mix.env() == :prod,
name: "NotQwerty123",
compilers: [:gettext] ++ Mix.compilers(),
package: package(),
deps: deps(),
docs: docs()
]
end
def application do
[
extra_applications: [:logger, :crypto],
mod: {NotQwerty123, []}
]
end
defp deps do
[
{:gettext, "~> 0.18"},
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false},
{:benchee, "~> 1.0", only: :dev}
]
end
defp package do
[
description: "Library to check password strength and generate random passwords.",
maintainers: ["David Whitlock"],
licenses: ["BSD-3-Clause"],
links: %{"GitHub" => @source_url}
]
end
defp docs do
[
extras: [
"LICENSE.md": [title: "License"],
"README.md": [title: "Overview"]
],
main: "readme",
source_url: @source_url,
formatters: ["html"]
]
end
end