-
Notifications
You must be signed in to change notification settings - Fork 83
/
mix.exs
47 lines (40 loc) · 1008 Bytes
/
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
defmodule UUID.Mixfile do
use Mix.Project
@version "1.2.1"
def project do
[app: :elixir_uuid,
name: "UUID",
version: @version,
elixir: "~> 1.7",
docs: [extras: ["README.md", "CHANGELOG.md"],
main: "readme",
source_ref: "v#{@version}"],
source_url: "https://github.com/zyro/elixir-uuid",
description: description(),
package: package(),
deps: deps()]
end
# Application configuration.
def application do
[]
end
# List of dependencies.
defp deps do
[{:ex_doc, "~> 0.19", only: :dev},
{:earmark, "~> 1.2", only: :dev},
{:benchfella, "~> 0.3", only: :dev}]
end
# Description.
defp description do
"""
UUID generator and utilities for Elixir.
"""
end
# Package info.
defp package do
[files: ["lib", "mix.exs", "README.md", "LICENSE"],
maintainers: ["Andrei Mihu"],
licenses: ["Apache 2.0"],
links: %{"GitHub" => "https://github.com/zyro/elixir-uuid"}]
end
end