Skip to content

Commit 9a7f6db

Browse files
authored
Fix hexdocs setup (#244)
1 parent 0bc029a commit 9a7f6db

File tree

1 file changed

+16
-2
lines changed

1 file changed

+16
-2
lines changed

elixir-sdk/mix.exs

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ defmodule EppoSdk.MixProject do
77
version: "0.1.0",
88
elixir: "~> 1.15",
99
start_permanent: Mix.env() == :prod,
10+
description: "Elixir SDK for Eppo's feature flagging and experimentation platform",
11+
package: package(),
1012
deps: deps(),
1113

1214
# Docs
@@ -15,8 +17,8 @@ defmodule EppoSdk.MixProject do
1517
homepage_url: "http://www.geteppo.com",
1618
docs: [
1719
# The main page in the docs
18-
main: "EppoSdk",
19-
extras: ["README.md"]
20+
main: "readme",
21+
extras: ["README.md", "../LICENSE"]
2022
]
2123
]
2224
end
@@ -38,4 +40,16 @@ defmodule EppoSdk.MixProject do
3840
{:ex_doc, "~> 0.21", only: :dev, runtime: false}
3941
]
4042
end
43+
44+
defp package do
45+
[
46+
name: "eppo_sdk",
47+
licenses: ["MIT"],
48+
links: %{
49+
"GitHub" => "https://github.com/Eppo-exp/eppo-multiplatform/tree/main/elixir-sdk",
50+
"Eppo" => "https://www.geteppo.com",
51+
"Documentation" => "https://docs.geteppo.com/sdks/server-sdks/"
52+
}
53+
]
54+
end
4155
end

0 commit comments

Comments
 (0)