defmodule Murmur.Mixfile do use Mix.Project @description """ Murmur is a pure Elixir implementation of the non-cryptographic hash Murmur3. It aims to implement the x86_32bit, x86_128bit and x64_128bit variants. """ def project do [app: :murmur, version: "0.2.0", elixir: "~> 1.0", description: @description, package: package, deps: deps, test_coverage: [tool: ExCoveralls]] end def application do [applications: []] end def package do [ files: ["lib", "mix.exs", "README.md", "LICENSE"], contributors: ["Gonçalo Cabrita"], licenses: ["MIT"], links: %{"GitHub" => "https://github.com/gmcabrita/murmur"} ] end defp deps do [{:excoveralls, "~> 0.3", only: :dev}] end end