docs: Update README and package links.

This commit is contained in:
James Harton 2024-02-23 20:11:29 +13:00
parent 6e0d6eddd2
commit d0407b40d2
Signed by: james
GPG key ID: 90E82DAA13F624F4
2 changed files with 11 additions and 2 deletions

View file

@ -20,6 +20,8 @@ def deps do
end
```
Docs are available on [docs.harton.nz](https://docs.harton.nz/james/kinemat).
## Usage
### Representing angles regardless of unit

11
mix.exs
View file

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