File tree 1 file changed +15
-2
lines changed
1 file changed +15
-2
lines changed Original file line number Diff line number Diff line change @@ -3,11 +3,13 @@ defmodule Docspring.Mixfile do
3
3
4
4
def project do
5
5
[ app: :docspring ,
6
- version: "0.1.0 " ,
6
+ version: "0.0.1 " ,
7
7
elixir: "~> 1.4" ,
8
8
build_embedded: Mix . env == :prod ,
9
9
start_permanent: Mix . env == :prod ,
10
- deps: deps ( ) ]
10
+ deps: deps ( ) ,
11
+ description: description ( ) ,
12
+ package: package ( ) ]
11
13
end
12
14
13
15
# Configuration for the OTP application
@@ -18,6 +20,10 @@ defmodule Docspring.Mixfile do
18
20
[ extra_applications: [ :logger ] ]
19
21
end
20
22
23
+ defp description ( ) do
24
+ "Elixir API client for the DocSpring PDF generation service"
25
+ end
26
+
21
27
# Dependencies can be Hex packages:
22
28
#
23
29
# {:my_dep, "~> 0.3.0"}
@@ -33,4 +39,11 @@ defmodule Docspring.Mixfile do
33
39
{ :poison , ">= 1.0.0" }
34
40
]
35
41
end
42
+
43
+ defp package ( ) do
44
+ [
45
+ licenses: [ "MIT" ] ,
46
+ links: % { "GitHub" => "https://github.com/DocSpring/docspring-elixir" }
47
+ ]
48
+ end
36
49
end
You can’t perform that action at this time.
0 commit comments