-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmix.exs
43 lines (38 loc) · 899 Bytes
/
mix.exs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
defmodule Statsig.MixProject do
use Mix.Project
def project() do
[
app: :statsig,
version: "0.0.3",
elixir: "~> 1.0",
deps: deps(),
description: description(),
package: package(),
name: "statsig",
source_url: "https://github.com/statsig-io/erlang-sdk"
]
end
defp description() do
"An erlang/elixir SDK for Statsig feature gates and experiments"
end
def application() do
[
mod: {:statsig, []}
]
end
defp deps() do
[
{:hackney, "~> 1.18.1"},
{:jiffy, "~> 1.1.1"},
{:ex_doc, "~> 0.27", only: :dev, runtime: false},
]
end
defp package() do
[
# These are the default files included in the package
files: ~w(mix.exs rebar.config LICENSE* README* src),
licenses: ["ISC"],
links: %{"GitHub" => "https://github.com/statsig-io/erlang-sdk"}
]
end
end