@@ -3,30 +3,43 @@ defmodule Diff.Mixfile do
3
3
4
4
def project do
5
5
[ app: :diff ,
6
- version: "0.0.1" ,
6
+ name: "Diff" ,
7
+ version: "1.0.0" ,
7
8
elixir: "~> 1.0" ,
9
+ description: description ,
10
+ package: package ,
11
+ source_url: "https://github.com/bryanjos/diff" ,
8
12
build_embedded: Mix . env == :prod ,
9
13
start_permanent: Mix . env == :prod ,
10
14
deps: deps ]
11
15
end
12
16
13
- # Configuration for the OTP application
14
- #
15
- # Type `mix help compile.app` for more information
16
17
def application do
17
18
[ applications: [ :logger ] ]
18
19
end
19
20
20
- # Dependencies can be Hex packages:
21
- #
22
- # {:mydep, "~> 0.3.0"}
23
- #
24
- # Or git/path repositories:
25
- #
26
- # {:mydep, git: "https://github.com/elixir-lang/mydep.git", tag: "0.1.0"}
27
- #
28
- # Type `mix help deps` for more examples and options
29
21
defp deps do
30
- [ ]
22
+ [
23
+ { :earmark , "~> 0.2" , only: :dev } ,
24
+ { :ex_doc , "~> 0.11" , only: :dev } ,
25
+ { :credo , "~> 0.2.0" , only: :dev }
26
+ ]
27
+ end
28
+
29
+ defp description do
30
+ """
31
+ A simple diff library
32
+ """
33
+ end
34
+
35
+ defp package do
36
+ [
37
+ files: [ "lib" , "mix.exs" , "README*" , "LICENSE*" , "CHANGELOG*" ] ,
38
+ maintainers: [ "Bryan Joseph" ] ,
39
+ licenses: [ "MIT" ] ,
40
+ links: % {
41
+ "GitHub" => "https://github.com/bryanjos/diff"
42
+ }
43
+ ]
31
44
end
32
45
end
0 commit comments