Skip to content

Commit

Permalink
added hexdocs and added links to Lob.com (#46)
Browse files Browse the repository at this point in the history
Co-authored-by: Aditi Ramaswamy <15935019+sudoku-lord@users.noreply.github.com>
  • Loading branch information
Shariq Torres and sudoku-lord authored Dec 16, 2021
1 parent 288b1df commit 07736d4
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ defmodule Lob.Mixfile do
test_coverage: [tool: ExCoveralls],
description: "Lob Elixir Library",
package: package(),
docs: docs(),
deps: deps(),
dialyzer: [
flags: [
Expand Down Expand Up @@ -44,12 +45,21 @@ defmodule Lob.Mixfile do
]
end

defp docs do
[
extras: [{:"README.md", title: "Overview"}],
main: "readme"
]
end
defp package do
[
maintainers: ["Lob"],
files: ["lib/**/*.ex", "mix*", "*.md"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/lob/lob-elixir"}
links: %{
"GitHub" => "https://github.com/lob/lob-elixir",
"API Documentation" => "https://docs.lob.com/"
}
]
end
end

0 comments on commit 07736d4

Please sign in to comment.