-
Notifications
You must be signed in to change notification settings - Fork 14
/
mix.exs
43 lines (38 loc) · 1.13 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 Eml.Mixfile do
use Mix.Project
def project do
[ app: :eml,
version: "0.9.0-dev",
name: "Eml",
source_url: "https://github.com/zambal/eml",
homepage_url: "https://github.com/zambal/eml",
deps: deps(),
description: description(),
package: package() ]
end
def application do
[]
end
def deps do
[ { :ex_doc, "~> 0.9", only: :docs },
{ :earmark, "~> 0.1", only: :docs } ]
end
defp description do
"""
Eml makes markup a first class citizen in Elixir. It provides a
flexible and modular toolkit for generating, parsing and
manipulating markup. It's main focus is html, but other markup
languages could be implemented as well.
"""
end
defp package do
[ files: ["lib", "priv", "mix.exs", "README*", "readme*", "LICENSE*", "license*", "CHANGELOG*"],
contributors: ["Vincent Siliakus"],
licenses: ["Apache 2.0"],
links: %{
"GitHub" => "https://github.com/zambal/eml",
"Walkthrough" => "https://github.com/zambal/eml/blob/master/README.md",
"Documentation" => "https://hexdocs.pm/eml/"
} ]
end
end