+8
mix.exs
+8
mix.exs
···
8
def project do
9
[
10
app: :aww,
11
+
description: "Generate URI for avatars",
12
version: "1.0.0",
13
+
package: [
14
+
licenses: ["MPL-2.0"],
15
+
links: %{
16
+
"Gravatar" => "https://gravatar.com",
17
+
"Libravatar" => "https://libravatar.org"
18
+
}
19
+
],
20
elixir: "~> 1.16",
21
start_permanent: Mix.env() == :prod,
22
elixirc_paths: elixirc_paths(Mix.env()),