* [ExDoc] package: Prep package info

This commit is contained in:
Anthony Mineo 2021-10-07 16:47:04 -04:00
parent eb25db918f
commit d6e80b6991

11
mix.exs
View file

@ -17,7 +17,8 @@ defmodule T2ServerQuery.MixProject do
docs: [
main: "T2ServerQuery",
extras: ["README.md"]
]
],
package: package()
]
end
@ -35,4 +36,12 @@ defmodule T2ServerQuery.MixProject do
{:ex_doc, "~> 0.24", only: :dev, runtime: false}
]
end
defp package() do
[
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/amineo/t2_server_query_elixir"}
]
end
end