-
Notifications
You must be signed in to change notification settings - Fork 6
/
mix.exs
43 lines (38 loc) · 1.03 KB
/
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 Templates.Mixfile do
use Mix.Project
def project do
[ app: :templates,
version: "0.0.6",
elixir: "~> 1.0.0",
name: "Templates",
deps: deps(),
package: package(),
description: description(),
docs: [readme: "README.md", main: "README"],
test_coverage: [tool: ExCoveralls] ]
end
# Configuration for the OTP application
def application do
[ application: [:templates, :erlydtl, :calliope],
mod: { Templates, [] } ]
end
defp deps do
[
{:calliope, "~> 0.4.0"},
{:ex_doc, "~> 0.7.2", only: :docs},
{:earmark, "~> 0.1.15", only: :docs},
{:excoveralls, "~> 0.18", only: :test}
]
end
defp description do
"""
A helper library for adding templating to web applications
"""
end
defp package do
%{contributors: ["Shane Logsdon"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/sugar-framework/templates",
"Docs" => "http://sugar-framework.github.io/docs/api/templates/"}}
end
end