forked from gutschilla/elixir-helper-random
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmix.exs
More file actions
44 lines (39 loc) · 1.03 KB
/
mix.exs
File metadata and controls
44 lines (39 loc) · 1.03 KB
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
defmodule Misc.Random.Mixfile do
use Mix.Project
def project do
[
app: :misc_random,
version: "1.0.0",
elixir: "~> 1.4",
description: description(),
package: package(),
deps: deps(),
source_url: "https://github.com/indyone/misc_random",
docs: [main: "readme", extras: ["README.md"]],
]
end
defp deps do
[
{:credo, "~> 0.8", only: [:dev], runtime: false},
{:ex_doc, "~> 0.16", only: [:dev], runtime: false},
{:dialyxir, "~> 0.5", only: [:dev], runtime: false}
]
end
defp description do
"""
This is a very thin wrapper around erlang's rand:uniform method. It allows
you to create random strings or numbers.
"""
end
defp package do
[
files: ["lib", "mix.exs", "README*", "LICENSE*"],
maintainers: ["Martin Gutsch", "Ioannis Stavrinos"],
licenses: ["MIT"],
links: %{
"GitHub" => "https://github.com/indyone/misc_random",
# "Docs" => "https://hexdocs.pm/misc_random/",
}
]
end
end