forked from zyro/elixir-uuid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
45 lines (39 loc) · 912 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
defmodule UUID.Mixfile do
use Mix.Project
def project do
[app: :uuid,
name: "UUID",
version: "1.0.0",
source_url: "https://github.com/zyro/elixir-uuid",
homepage_url: "http://hexdocs.pm/uuid",
elixir: "~> 1.0",
description: description(),
package: package(),
deps: deps()]
end
# Application configuration.
def application do
[]
end
# List of dependencies.
defp deps do
[{:ex_doc, "~> 0.7", only: :dev},
{:earmark, "~> 0.1", 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"],
contributors: ["Andrei Mihu"],
licenses: ["Apache 2.0"],
links: %{
github: "https://github.com/zyro/elixir-uuid",
docs: "http://hexdocs.pm/uuid"
}]
end
end