diff --git a/README.md b/README.md index a1025e9..ee52baa 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/mix.exs b/mix.exs index 187550e..20016bb 100644 --- a/mix.exs +++ b/mix.exs @@ -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 "], 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