-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
44 lines (39 loc) · 995 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
defmodule ScatterSwap.Mixfile do
use Mix.Project
def project do
[
app: :scatter_swap,
name: :scatter_swap,
version: "0.1.0",
elixir: "~> 1.3",
source_url: "https://github.com/dougal/scatter_swap.ex",
description: "An integer hash function designed to have zero collisions, achieve avalanche, and be reversible.",
package: package(),
deps: deps(),
docs: docs()
]
end
def application do
[applications: []]
end
defp deps do
[
{:credo, "~> 0.7", only: :dev},
{:ex_doc, "~> 0.13", only: :dev}
]
end
defp docs do
[
main: "readme",
extras: ["README.md"]
]
end
defp package do
[
licenses: ["MIT"],
maintainers: ["Douglas F Shearer"],
links: %{"GitHub" => "https://github.com/dougal/scatter_swap.ex"},
files: ~w(mix.exs README.md CHANGELOG.md LICENCE.txt lib)
]
end
end