From bb753070a7466008e8868f3c8fa0c0f6bb0c99fd Mon Sep 17 00:00:00 2001 From: Douglas F Shearer Date: Thu, 23 Mar 2017 21:23:03 +0000 Subject: [PATCH] Update mix.exs for 0.1.0 release. --- mix.exs | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/mix.exs b/mix.exs index e7b7353..6bd48b3 100644 --- a/mix.exs +++ b/mix.exs @@ -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() ] @@ -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