-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmix.exs
More file actions
50 lines (44 loc) · 1004 Bytes
/
mix.exs
File metadata and controls
50 lines (44 loc) · 1004 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
44
45
46
47
48
49
50
defmodule RandomBytes.Mixfile do
use Mix.Project
@version "1.0.4"
def project do
[
app: :random_bytes,
version: @version,
elixir: "~> 1.4",
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
deps: deps(),
package: package(),
name: "RandomBytes",
description: "Generate random strings in a few different formats.",
docs: docs()
]
end
def application() do
[
extra_applications: [:crypto]
]
end
defp deps do
[
{:ex_doc, "~> 0.19", only: :dev, runtime: false}
]
end
defp package do
[
maintainers: ["Duff O'Melia"],
licenses: ["Apache 2.0"],
links: %{"GitHub" => "https://github.com/duff/random_bytes"},
files: ~w(lib mix.exs README.md LICENSE.md)
]
end
defp docs do
[
source_ref: "v#{@version}",
extras: ["README.md"],
main: "readme",
source_url: "https://github.com/duff/random_bytes"
]
end
end