-
Notifications
You must be signed in to change notification settings - Fork 16
/
mix.exs
52 lines (45 loc) · 805 Bytes
/
mix.exs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
defmodule Imagineer.Mixfile do
use Mix.Project
def project do
[
app: :imagineer,
version: "0.3.3",
elixir: "~> 1.6",
deps: deps(),
source_url: "https://github.com/tyre/imagineer",
description: description(),
package: package()
]
end
def application do
[applications: [:logger]]
end
defp deps do
[
{:apex, "~>1.0.0", env: :test},
{:ex_doc, ">= 0.0.0", only: :dev}
]
end
defp description do
"""
Image processing in Elixir
"""
end
defp package do
[
maintainers: maintainers(),
links: links(),
licenses: ["MIT"]
]
end
defp maintainers do
[
"Chris Maddox"
]
end
defp links do
%{
github: "https://github.com/tyre/imagineer"
}
end
end