docs: Update README and package links.

This commit is contained in:
James Harton 2024-02-23 19:58:08 +13:00
parent c74dd943fc
commit ff1f1144e9
Signed by: james
GPG key ID: 90E82DAA13F624F4

11
mix.exs
View file

@ -14,7 +14,11 @@ defmodule IP.Mixfile do
start_permanent: Mix.env() == :prod, start_permanent: Mix.env() == :prod,
package: package(), package: package(),
deps: deps(), deps: deps(),
description: @description description: @description,
docs: [
main: "readme",
extras: ["README.md", "CHANGELOG.md"]
]
] ]
end end
@ -23,7 +27,10 @@ defmodule IP.Mixfile do
maintainers: ["James Harton <james@harton.nz>"], maintainers: ["James Harton <james@harton.nz>"],
licenses: ["HL3-FULL"], licenses: ["HL3-FULL"],
links: %{ links: %{
"Source" => "https://harton.dev/james/ip" "Source" => "https://harton.dev/james/ip",
"GitHub" => "https://github.com/jimsynz/ip",
"Changelog" => "https://docs.harton.nz/james/ip/changelog.html",
"Sponsor" => "https://github.com/sponsors/jimsynz"
} }
] ]
end end