Skip to content

Commit

Permalink
Add Hex info
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesduncombe committed Nov 16, 2020
1 parent 62d7598 commit a440293
Showing 1 changed file with 26 additions and 1 deletion.
27 changes: 26 additions & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,20 @@ defmodule Petal.MixProject do
version: "0.1.0",
elixir: "~> 1.11",
start_permanent: Mix.env() == :prod,
deps: deps()
deps: deps(),
description: description(),
package: package(),
docs: [
groups_for_modules: [
Behaviours: [
Petal.Hasher
],
"Hash Functions": [
Petal.Hasher.CRC32,
Petal.Hasher.Adler32
]
]
]
]
end

Expand All @@ -26,4 +39,16 @@ defmodule Petal.MixProject do
{:dialyxir, "~> 1.0", only: [:dev], runtime: false}
]
end

defp description() do
"Petal is a Bloom filter"
end

defp package() do
[
maintainers: ["James Duncombe"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/jamesduncombe/petal"}
]
end
end

0 comments on commit a440293

Please sign in to comment.