File tree Expand file tree Collapse file tree 1 file changed +16
-2
lines changed Expand file tree Collapse file tree 1 file changed +16
-2
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,8 @@ defmodule EppoSdk.MixProject do
7
7
version: "0.1.0" ,
8
8
elixir: "~> 1.15" ,
9
9
start_permanent: Mix . env ( ) == :prod ,
10
+ description: "Elixir SDK for Eppo's feature flagging and experimentation platform" ,
11
+ package: package ( ) ,
10
12
deps: deps ( ) ,
11
13
12
14
# Docs
@@ -15,8 +17,8 @@ defmodule EppoSdk.MixProject do
15
17
homepage_url: "http://www.geteppo.com" ,
16
18
docs: [
17
19
# The main page in the docs
18
- main: "EppoSdk " ,
19
- extras: [ "README.md" ]
20
+ main: "readme " ,
21
+ extras: [ "README.md" , "../LICENSE" ]
20
22
]
21
23
]
22
24
end
@@ -38,4 +40,16 @@ defmodule EppoSdk.MixProject do
38
40
{ :ex_doc , "~> 0.21" , only: :dev , runtime: false }
39
41
]
40
42
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
41
55
end
You can’t perform that action at this time.
0 commit comments