We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7fc71c1 commit 9e51556Copy full SHA for 9e51556
mix.exs
@@ -5,10 +5,11 @@ defmodule CONREC.MixProject do
5
[
6
app: :conrex,
7
description: description(),
8
+ package: package(),
9
version: "1.0.0",
- licenses: ["MIT"],
10
elixir: "~> 1.9",
11
- deps: deps()
+ deps: deps(),
12
+ source_url: "https://github.com/NAISorg/conrex/"
13
]
14
end
15
@@ -19,6 +20,15 @@ defmodule CONREC.MixProject do
19
20
"""
21
22
23
+ defp package() do
24
+ %{
25
+ name: "conrex",
26
+ organization: "nais",
27
+ licenses: ["MIT"],
28
+ links: %{"GitHub" => "https://github.com/NAISorg/conrex/"}
29
+ }
30
+ end
31
+
32
defp deps do
33
34
{:geo, "~> 3.1"},
0 commit comments