forked from tyre/gutenex
-
Notifications
You must be signed in to change notification settings - Fork 2
/
mix.exs
43 lines (38 loc) · 866 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
defmodule Gutenex.Mixfile do
use Mix.Project
def project do
[
app: :gutenex,
name: "Gutenex",
version: "0.2.0",
source_url: "https://github.com/SenecaSystems/gutenex",
elixir: "~> 1.5",
deps: deps(),
description: description(),
package: package()
]
end
def application do
[applications: [:logger]]
end
defp deps() do
[
{:imagineer, github: "jbowtie/imagineer", ref: "fix_1_6_exceptions"},
{:opentype, "~> 0.5.0" },
{:earmark, "~> 1.2", only: :dev},
{:ex_doc, "~> 0.16.4", only: :dev}
]
end
defp description() do
"""
PDF Generation in Elixir
"""
end
defp package() do
[
licenses: ["MIT"],
links: %{github: "https://github.com/SenecaSystems/gutenex"},
contributors: ["Chris Maddox", "John C Barstow"]
]
end
end