forked from mailman-elixir/mailman
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmix.exs
45 lines (41 loc) · 1.14 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
44
45
defmodule Mailman.Mixfile do
use Mix.Project
def project do
[
app: :mailman,
name: "Mailman",
source_url: "https://github.com/kamilc/mailman",
homepage_url: "https://github.com/kamilc/mailman",
description: "Library providing a clean way of defining mailers in Elixir apps",
package: package(),
version: "0.4.2",
elixir: "~> 1.0",
deps: deps()
]
end
# Configuration for the OTP application
def application do
[applications: [:ssl, :crypto, :eiconv, :gen_smtp, :httpotion]]
end
# Returns the list of dependencies in the format:
defp deps do
[
{:eiconv, "~> 1.0.0"},
{:gen_smtp, "~> 0.14.0"},
{:ex_doc, ">= 0.19.1", only: :dev},
{:httpotion, "~> 3.1.0"},
{:credo, "~> 0.10", only: [:dev, :test], runtime: false}
]
end
defp package do
[
files: ["lib", "docs", "LICENSE", "README", "mix.exs"],
maintainers: ["Kamil Ciemniewski <[email protected]>"],
licenses: ["MIT"],
links: %{
"GitHub" => "https://github.com/kamilc/mailman",
"Docs" => "http://hexdocs.pm/mailman"
}
]
end
end