Skip to content

Commit c27ba15

Browse files
committed
Housekeeping
1 parent 85441b8 commit c27ba15

1 file changed

Lines changed: 20 additions & 1 deletion

File tree

mix.exs

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,11 @@ defmodule HRW.MixProject do
77
version: "0.1.0",
88
elixir: "~> 1.18",
99
start_permanent: Mix.env() == :prod,
10-
deps: deps()
10+
deps: deps(),
11+
description:
12+
"Rendezvous hashing (HRW) with an optional O(log n) skeleton for large node sets.",
13+
package: package(),
14+
docs: docs()
1115
]
1216
end
1317

@@ -25,4 +29,19 @@ defmodule HRW.MixProject do
2529
{:credo, "~> 1.7", only: :dev}
2630
]
2731
end
32+
33+
defp package do
34+
[
35+
licenses: ["MIT"],
36+
links: %{"GitHub" => "https://github.com/joladev/hrw"},
37+
files: ~w(lib mix.exs README.md LICENSE)
38+
]
39+
end
40+
41+
defp docs do
42+
[
43+
main: "readme",
44+
extras: ["README.md"]
45+
]
46+
end
2847
end

0 commit comments

Comments
 (0)