Skip to content

Commit

Permalink
Update mix.exs for 0.1.0 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
dougal committed Mar 23, 2017
1 parent ec21bc0 commit bb75307
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,12 @@ defmodule ScatterSwap.Mixfile do
def project do
[
app: :scatter_swap,
name: "ScatterSwap",
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()
]
Expand All @@ -31,4 +32,13 @@ defmodule ScatterSwap.Mixfile do
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

0 comments on commit bb75307

Please sign in to comment.