Skip to content

Commit 3f321ef

Browse files
committed
Updated on 2022-08-05 14:39:35. Version: 0.0.1
1 parent 41b4d49 commit 3f321ef

File tree

1 file changed

+15
-2
lines changed

1 file changed

+15
-2
lines changed

mix.exs

+15-2
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,13 @@ defmodule Docspring.Mixfile do
33

44
def project do
55
[app: :docspring,
6-
version: "0.1.0",
6+
version: "0.0.1",
77
elixir: "~> 1.4",
88
build_embedded: Mix.env == :prod,
99
start_permanent: Mix.env == :prod,
10-
deps: deps()]
10+
deps: deps(),
11+
description: description(),
12+
package: package()]
1113
end
1214

1315
# Configuration for the OTP application
@@ -18,6 +20,10 @@ defmodule Docspring.Mixfile do
1820
[extra_applications: [:logger]]
1921
end
2022

23+
defp description() do
24+
"Elixir API client for the DocSpring PDF generation service"
25+
end
26+
2127
# Dependencies can be Hex packages:
2228
#
2329
# {:my_dep, "~> 0.3.0"}
@@ -33,4 +39,11 @@ defmodule Docspring.Mixfile do
3339
{:poison, ">= 1.0.0"}
3440
]
3541
end
42+
43+
defp package() do
44+
[
45+
licenses: ["MIT"],
46+
links: %{"GitHub" => "https://github.com/DocSpring/docspring-elixir"}
47+
]
48+
end
3649
end

0 commit comments

Comments
 (0)